capistrano-cluster 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (94) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +21 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +38 -0
  6. data/Rakefile +1 -0
  7. data/capistrano-cluster.gemspec +29 -0
  8. data/files/Procfile.erb +2 -0
  9. data/files/apt.conf.d/10periodic +4 -0
  10. data/files/apt.conf.d/50unattended-upgrades +4 -0
  11. data/files/database.yml.erb +11 -0
  12. data/files/etc/hosts.erb +9 -0
  13. data/files/firewall.erb +8 -0
  14. data/files/issue.net +11 -0
  15. data/files/lb-sysctl.conf +24 -0
  16. data/files/nginx/application.conf.erb +67 -0
  17. data/files/nginx/lb-application.conf.erb +91 -0
  18. data/files/nginx/lb-nginx.conf.erb +84 -0
  19. data/files/nginx/nginx.conf.erb +80 -0
  20. data/files/pg_hba.conf.erb +10 -0
  21. data/files/postgresql.conf +19 -0
  22. data/files/redis/redis.conf +597 -0
  23. data/files/service.erb +67 -0
  24. data/files/solr/conf/lang/contractions_ca.txt +8 -0
  25. data/files/solr/conf/lang/contractions_fr.txt +9 -0
  26. data/files/solr/conf/lang/contractions_ga.txt +5 -0
  27. data/files/solr/conf/lang/contractions_it.txt +23 -0
  28. data/files/solr/conf/lang/hyphenations_ga.txt +5 -0
  29. data/files/solr/conf/lang/stemdict_nl.txt +6 -0
  30. data/files/solr/conf/lang/stoptags_ja.txt +420 -0
  31. data/files/solr/conf/lang/stopwords_ar.txt +125 -0
  32. data/files/solr/conf/lang/stopwords_bg.txt +193 -0
  33. data/files/solr/conf/lang/stopwords_ca.txt +220 -0
  34. data/files/solr/conf/lang/stopwords_cz.txt +172 -0
  35. data/files/solr/conf/lang/stopwords_da.txt +108 -0
  36. data/files/solr/conf/lang/stopwords_de.txt +292 -0
  37. data/files/solr/conf/lang/stopwords_el.txt +78 -0
  38. data/files/solr/conf/lang/stopwords_en.txt +54 -0
  39. data/files/solr/conf/lang/stopwords_es.txt +354 -0
  40. data/files/solr/conf/lang/stopwords_eu.txt +99 -0
  41. data/files/solr/conf/lang/stopwords_fa.txt +313 -0
  42. data/files/solr/conf/lang/stopwords_fi.txt +95 -0
  43. data/files/solr/conf/lang/stopwords_fr.txt +183 -0
  44. data/files/solr/conf/lang/stopwords_ga.txt +110 -0
  45. data/files/solr/conf/lang/stopwords_gl.txt +161 -0
  46. data/files/solr/conf/lang/stopwords_hi.txt +235 -0
  47. data/files/solr/conf/lang/stopwords_hu.txt +209 -0
  48. data/files/solr/conf/lang/stopwords_hy.txt +46 -0
  49. data/files/solr/conf/lang/stopwords_id.txt +359 -0
  50. data/files/solr/conf/lang/stopwords_it.txt +301 -0
  51. data/files/solr/conf/lang/stopwords_ja.txt +127 -0
  52. data/files/solr/conf/lang/stopwords_lv.txt +172 -0
  53. data/files/solr/conf/lang/stopwords_nl.txt +117 -0
  54. data/files/solr/conf/lang/stopwords_no.txt +192 -0
  55. data/files/solr/conf/lang/stopwords_pt.txt +251 -0
  56. data/files/solr/conf/lang/stopwords_ro.txt +233 -0
  57. data/files/solr/conf/lang/stopwords_ru.txt +241 -0
  58. data/files/solr/conf/lang/stopwords_sv.txt +131 -0
  59. data/files/solr/conf/lang/stopwords_th.txt +119 -0
  60. data/files/solr/conf/lang/stopwords_tr.txt +212 -0
  61. data/files/solr/conf/lang/userdict_ja.txt +29 -0
  62. data/files/solr/conf/mapping-FoldToASCII.txt +3813 -0
  63. data/files/solr/conf/schema.xml +111 -0
  64. data/files/solr/conf/solrconfig.xml +59 -0
  65. data/files/solr/conf/stopwords.txt +14 -0
  66. data/files/solr/solr.xml +45 -0
  67. data/files/ssh/authorized_keys.erb +4 -0
  68. data/files/ssh/config +3 -0
  69. data/files/sshd_config +40 -0
  70. data/files/tmux.conf +136 -0
  71. data/files/ufw +44 -0
  72. data/files/unicorn.rb.erb +63 -0
  73. data/lib/capistrano/cluster/application.rb +75 -0
  74. data/lib/capistrano/cluster/core_ext/object.rb +17 -0
  75. data/lib/capistrano/cluster/files.rb +57 -0
  76. data/lib/capistrano/cluster/packages.rb +62 -0
  77. data/lib/capistrano/cluster/paths.rb +18 -0
  78. data/lib/capistrano/cluster/service.rb +70 -0
  79. data/lib/capistrano/cluster/version.rb +5 -0
  80. data/lib/capistrano/cluster.rb +35 -0
  81. data/tasks/deploy/application.rake +48 -0
  82. data/tasks/deploy.rake +71 -0
  83. data/tasks/roles/app.rake +71 -0
  84. data/tasks/roles/cache.rake +16 -0
  85. data/tasks/roles/db.rake +66 -0
  86. data/tasks/roles/indexer.rake +132 -0
  87. data/tasks/roles/proxy.rake +59 -0
  88. data/tasks/roles/rabbit.rake +52 -0
  89. data/tasks/roles/resque.rake +96 -0
  90. data/tasks/roles/sidekiq.rake +42 -0
  91. data/tasks/roles/web.rake +64 -0
  92. data/tasks/setup/firewall.rake +53 -0
  93. data/tasks/setup.rake +96 -0
  94. metadata +221 -0
@@ -0,0 +1,292 @@
1
+ | From svn.tartarus.org/snowball/trunk/website/algorithms/german/stop.txt
2
+ | This file is distributed under the BSD License.
3
+ | See http://snowball.tartarus.org/license.php
4
+ | Also see http://www.opensource.org/licenses/bsd-license.html
5
+ | - Encoding was converted to UTF-8.
6
+ | - This notice was added.
7
+
8
+ | A German stop word list. Comments begin with vertical bar. Each stop
9
+ | word is at the start of a line.
10
+
11
+ | The number of forms in this list is reduced significantly by passing it
12
+ | through the German stemmer.
13
+
14
+
15
+ aber | but
16
+
17
+ alle | all
18
+ allem
19
+ allen
20
+ aller
21
+ alles
22
+
23
+ als | than, as
24
+ also | so
25
+ am | an + dem
26
+ an | at
27
+
28
+ ander | other
29
+ andere
30
+ anderem
31
+ anderen
32
+ anderer
33
+ anderes
34
+ anderm
35
+ andern
36
+ anderr
37
+ anders
38
+
39
+ auch | also
40
+ auf | on
41
+ aus | out of
42
+ bei | by
43
+ bin | am
44
+ bis | until
45
+ bist | art
46
+ da | there
47
+ damit | with it
48
+ dann | then
49
+
50
+ der | the
51
+ den
52
+ des
53
+ dem
54
+ die
55
+ das
56
+
57
+ daß | that
58
+
59
+ derselbe | the same
60
+ derselben
61
+ denselben
62
+ desselben
63
+ demselben
64
+ dieselbe
65
+ dieselben
66
+ dasselbe
67
+
68
+ dazu | to that
69
+
70
+ dein | thy
71
+ deine
72
+ deinem
73
+ deinen
74
+ deiner
75
+ deines
76
+
77
+ denn | because
78
+
79
+ derer | of those
80
+ dessen | of him
81
+
82
+ dich | thee
83
+ dir | to thee
84
+ du | thou
85
+
86
+ dies | this
87
+ diese
88
+ diesem
89
+ diesen
90
+ dieser
91
+ dieses
92
+
93
+
94
+ doch | (several meanings)
95
+ dort | (over) there
96
+
97
+
98
+ durch | through
99
+
100
+ ein | a
101
+ eine
102
+ einem
103
+ einen
104
+ einer
105
+ eines
106
+
107
+ einig | some
108
+ einige
109
+ einigem
110
+ einigen
111
+ einiger
112
+ einiges
113
+
114
+ einmal | once
115
+
116
+ er | he
117
+ ihn | him
118
+ ihm | to him
119
+
120
+ es | it
121
+ etwas | something
122
+
123
+ euer | your
124
+ eure
125
+ eurem
126
+ euren
127
+ eurer
128
+ eures
129
+
130
+ für | for
131
+ gegen | towards
132
+ gewesen | p.p. of sein
133
+ hab | have
134
+ habe | have
135
+ haben | have
136
+ hat | has
137
+ hatte | had
138
+ hatten | had
139
+ hier | here
140
+ hin | there
141
+ hinter | behind
142
+
143
+ ich | I
144
+ mich | me
145
+ mir | to me
146
+
147
+
148
+ ihr | you, to her
149
+ ihre
150
+ ihrem
151
+ ihren
152
+ ihrer
153
+ ihres
154
+ euch | to you
155
+
156
+ im | in + dem
157
+ in | in
158
+ indem | while
159
+ ins | in + das
160
+ ist | is
161
+
162
+ jede | each, every
163
+ jedem
164
+ jeden
165
+ jeder
166
+ jedes
167
+
168
+ jene | that
169
+ jenem
170
+ jenen
171
+ jener
172
+ jenes
173
+
174
+ jetzt | now
175
+ kann | can
176
+
177
+ kein | no
178
+ keine
179
+ keinem
180
+ keinen
181
+ keiner
182
+ keines
183
+
184
+ können | can
185
+ könnte | could
186
+ machen | do
187
+ man | one
188
+
189
+ manche | some, many a
190
+ manchem
191
+ manchen
192
+ mancher
193
+ manches
194
+
195
+ mein | my
196
+ meine
197
+ meinem
198
+ meinen
199
+ meiner
200
+ meines
201
+
202
+ mit | with
203
+ muss | must
204
+ musste | had to
205
+ nach | to(wards)
206
+ nicht | not
207
+ nichts | nothing
208
+ noch | still, yet
209
+ nun | now
210
+ nur | only
211
+ ob | whether
212
+ oder | or
213
+ ohne | without
214
+ sehr | very
215
+
216
+ sein | his
217
+ seine
218
+ seinem
219
+ seinen
220
+ seiner
221
+ seines
222
+
223
+ selbst | self
224
+ sich | herself
225
+
226
+ sie | they, she
227
+ ihnen | to them
228
+
229
+ sind | are
230
+ so | so
231
+
232
+ solche | such
233
+ solchem
234
+ solchen
235
+ solcher
236
+ solches
237
+
238
+ soll | shall
239
+ sollte | should
240
+ sondern | but
241
+ sonst | else
242
+ über | over
243
+ um | about, around
244
+ und | and
245
+
246
+ uns | us
247
+ unse
248
+ unsem
249
+ unsen
250
+ unser
251
+ unses
252
+
253
+ unter | under
254
+ viel | much
255
+ vom | von + dem
256
+ von | from
257
+ vor | before
258
+ während | while
259
+ war | was
260
+ waren | were
261
+ warst | wast
262
+ was | what
263
+ weg | away, off
264
+ weil | because
265
+ weiter | further
266
+
267
+ welche | which
268
+ welchem
269
+ welchen
270
+ welcher
271
+ welches
272
+
273
+ wenn | when
274
+ werde | will
275
+ werden | will
276
+ wie | how
277
+ wieder | again
278
+ will | want
279
+ wir | we
280
+ wird | will
281
+ wirst | willst
282
+ wo | where
283
+ wollen | want
284
+ wollte | wanted
285
+ würde | would
286
+ würden | would
287
+ zu | to
288
+ zum | zu + dem
289
+ zur | zu + der
290
+ zwar | indeed
291
+ zwischen | between
292
+
@@ -0,0 +1,78 @@
1
+ # Lucene Greek Stopwords list
2
+ # Note: by default this file is used after GreekLowerCaseFilter,
3
+ # so when modifying this file use 'σ' instead of 'ς'
4
+ ο
5
+ η
6
+ το
7
+ οι
8
+ τα
9
+ του
10
+ τησ
11
+ των
12
+ τον
13
+ την
14
+ και
15
+ κι
16
+ κ
17
+ ειμαι
18
+ εισαι
19
+ ειναι
20
+ ειμαστε
21
+ ειστε
22
+ στο
23
+ στον
24
+ στη
25
+ στην
26
+ μα
27
+ αλλα
28
+ απο
29
+ για
30
+ προσ
31
+ με
32
+ σε
33
+ ωσ
34
+ παρα
35
+ αντι
36
+ κατα
37
+ μετα
38
+ θα
39
+ να
40
+ δε
41
+ δεν
42
+ μη
43
+ μην
44
+ επι
45
+ ενω
46
+ εαν
47
+ αν
48
+ τοτε
49
+ που
50
+ πωσ
51
+ ποιοσ
52
+ ποια
53
+ ποιο
54
+ ποιοι
55
+ ποιεσ
56
+ ποιων
57
+ ποιουσ
58
+ αυτοσ
59
+ αυτη
60
+ αυτο
61
+ αυτοι
62
+ αυτων
63
+ αυτουσ
64
+ αυτεσ
65
+ αυτα
66
+ εκεινοσ
67
+ εκεινη
68
+ εκεινο
69
+ εκεινοι
70
+ εκεινεσ
71
+ εκεινα
72
+ εκεινων
73
+ εκεινουσ
74
+ οπωσ
75
+ ομωσ
76
+ ισωσ
77
+ οσο
78
+ οτι
@@ -0,0 +1,54 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one or more
2
+ # contributor license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright ownership.
4
+ # The ASF licenses this file to You under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with
6
+ # the License. You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+ # a couple of test stopwords to test that the words are really being
17
+ # configured from this file:
18
+ stopworda
19
+ stopwordb
20
+
21
+ # Standard english stop words taken from Lucene's StopAnalyzer
22
+ a
23
+ an
24
+ and
25
+ are
26
+ as
27
+ at
28
+ be
29
+ but
30
+ by
31
+ for
32
+ if
33
+ in
34
+ into
35
+ is
36
+ it
37
+ no
38
+ not
39
+ of
40
+ on
41
+ or
42
+ such
43
+ that
44
+ the
45
+ their
46
+ then
47
+ there
48
+ these
49
+ they
50
+ this
51
+ to
52
+ was
53
+ will
54
+ with