capistrano-cluster 0.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,354 @@
1
+ | From svn.tartarus.org/snowball/trunk/website/algorithms/spanish/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 Spanish stop word list. Comments begin with vertical bar. Each stop
9
+ | word is at the start of a line.
10
+
11
+
12
+ | The following is a ranked list (commonest to rarest) of stopwords
13
+ | deriving from a large sample of text.
14
+
15
+ | Extra words have been added at the end.
16
+
17
+ de | from, of
18
+ la | the, her
19
+ que | who, that
20
+ el | the
21
+ en | in
22
+ y | and
23
+ a | to
24
+ los | the, them
25
+ del | de + el
26
+ se | himself, from him etc
27
+ las | the, them
28
+ por | for, by, etc
29
+ un | a
30
+ para | for
31
+ con | with
32
+ no | no
33
+ una | a
34
+ su | his, her
35
+ al | a + el
36
+ | es from SER
37
+ lo | him
38
+ como | how
39
+ más | more
40
+ pero | pero
41
+ sus | su plural
42
+ le | to him, her
43
+ ya | already
44
+ o | or
45
+ | fue from SER
46
+ este | this
47
+ | ha from HABER
48
+ sí | himself etc
49
+ porque | because
50
+ esta | this
51
+ | son from SER
52
+ entre | between
53
+ | está from ESTAR
54
+ cuando | when
55
+ muy | very
56
+ sin | without
57
+ sobre | on
58
+ | ser from SER
59
+ | tiene from TENER
60
+ también | also
61
+ me | me
62
+ hasta | until
63
+ hay | there is/are
64
+ donde | where
65
+ | han from HABER
66
+ quien | whom, that
67
+ | están from ESTAR
68
+ | estado from ESTAR
69
+ desde | from
70
+ todo | all
71
+ nos | us
72
+ durante | during
73
+ | estados from ESTAR
74
+ todos | all
75
+ uno | a
76
+ les | to them
77
+ ni | nor
78
+ contra | against
79
+ otros | other
80
+ | fueron from SER
81
+ ese | that
82
+ eso | that
83
+ | había from HABER
84
+ ante | before
85
+ ellos | they
86
+ e | and (variant of y)
87
+ esto | this
88
+ mí | me
89
+ antes | before
90
+ algunos | some
91
+ qué | what?
92
+ unos | a
93
+ yo | I
94
+ otro | other
95
+ otras | other
96
+ otra | other
97
+ él | he
98
+ tanto | so much, many
99
+ esa | that
100
+ estos | these
101
+ mucho | much, many
102
+ quienes | who
103
+ nada | nothing
104
+ muchos | many
105
+ cual | who
106
+ | sea from SER
107
+ poco | few
108
+ ella | she
109
+ estar | to be
110
+ | haber from HABER
111
+ estas | these
112
+ | estaba from ESTAR
113
+ | estamos from ESTAR
114
+ algunas | some
115
+ algo | something
116
+ nosotros | we
117
+
118
+ | other forms
119
+
120
+ mi | me
121
+ mis | mi plural
122
+ tú | thou
123
+ te | thee
124
+ ti | thee
125
+ tu | thy
126
+ tus | tu plural
127
+ ellas | they
128
+ nosotras | we
129
+ vosotros | you
130
+ vosotras | you
131
+ os | you
132
+ mío | mine
133
+ mía |
134
+ míos |
135
+ mías |
136
+ tuyo | thine
137
+ tuya |
138
+ tuyos |
139
+ tuyas |
140
+ suyo | his, hers, theirs
141
+ suya |
142
+ suyos |
143
+ suyas |
144
+ nuestro | ours
145
+ nuestra |
146
+ nuestros |
147
+ nuestras |
148
+ vuestro | yours
149
+ vuestra |
150
+ vuestros |
151
+ vuestras |
152
+ esos | those
153
+ esas | those
154
+
155
+ | forms of estar, to be (not including the infinitive):
156
+ estoy
157
+ estás
158
+ está
159
+ estamos
160
+ estáis
161
+ están
162
+ esté
163
+ estés
164
+ estemos
165
+ estéis
166
+ estén
167
+ estaré
168
+ estarás
169
+ estará
170
+ estaremos
171
+ estaréis
172
+ estarán
173
+ estaría
174
+ estarías
175
+ estaríamos
176
+ estaríais
177
+ estarían
178
+ estaba
179
+ estabas
180
+ estábamos
181
+ estabais
182
+ estaban
183
+ estuve
184
+ estuviste
185
+ estuvo
186
+ estuvimos
187
+ estuvisteis
188
+ estuvieron
189
+ estuviera
190
+ estuvieras
191
+ estuviéramos
192
+ estuvierais
193
+ estuvieran
194
+ estuviese
195
+ estuvieses
196
+ estuviésemos
197
+ estuvieseis
198
+ estuviesen
199
+ estando
200
+ estado
201
+ estada
202
+ estados
203
+ estadas
204
+ estad
205
+
206
+ | forms of haber, to have (not including the infinitive):
207
+ he
208
+ has
209
+ ha
210
+ hemos
211
+ habéis
212
+ han
213
+ haya
214
+ hayas
215
+ hayamos
216
+ hayáis
217
+ hayan
218
+ habré
219
+ habrás
220
+ habrá
221
+ habremos
222
+ habréis
223
+ habrán
224
+ habría
225
+ habrías
226
+ habríamos
227
+ habríais
228
+ habrían
229
+ había
230
+ habías
231
+ habíamos
232
+ habíais
233
+ habían
234
+ hube
235
+ hubiste
236
+ hubo
237
+ hubimos
238
+ hubisteis
239
+ hubieron
240
+ hubiera
241
+ hubieras
242
+ hubiéramos
243
+ hubierais
244
+ hubieran
245
+ hubiese
246
+ hubieses
247
+ hubiésemos
248
+ hubieseis
249
+ hubiesen
250
+ habiendo
251
+ habido
252
+ habida
253
+ habidos
254
+ habidas
255
+
256
+ | forms of ser, to be (not including the infinitive):
257
+ soy
258
+ eres
259
+ es
260
+ somos
261
+ sois
262
+ son
263
+ sea
264
+ seas
265
+ seamos
266
+ seáis
267
+ sean
268
+ seré
269
+ serás
270
+ será
271
+ seremos
272
+ seréis
273
+ serán
274
+ sería
275
+ serías
276
+ seríamos
277
+ seríais
278
+ serían
279
+ era
280
+ eras
281
+ éramos
282
+ erais
283
+ eran
284
+ fui
285
+ fuiste
286
+ fue
287
+ fuimos
288
+ fuisteis
289
+ fueron
290
+ fuera
291
+ fueras
292
+ fuéramos
293
+ fuerais
294
+ fueran
295
+ fuese
296
+ fueses
297
+ fuésemos
298
+ fueseis
299
+ fuesen
300
+ siendo
301
+ sido
302
+ | sed also means 'thirst'
303
+
304
+ | forms of tener, to have (not including the infinitive):
305
+ tengo
306
+ tienes
307
+ tiene
308
+ tenemos
309
+ tenéis
310
+ tienen
311
+ tenga
312
+ tengas
313
+ tengamos
314
+ tengáis
315
+ tengan
316
+ tendré
317
+ tendrás
318
+ tendrá
319
+ tendremos
320
+ tendréis
321
+ tendrán
322
+ tendría
323
+ tendrías
324
+ tendríamos
325
+ tendríais
326
+ tendrían
327
+ tenía
328
+ tenías
329
+ teníamos
330
+ teníais
331
+ tenían
332
+ tuve
333
+ tuviste
334
+ tuvo
335
+ tuvimos
336
+ tuvisteis
337
+ tuvieron
338
+ tuviera
339
+ tuvieras
340
+ tuviéramos
341
+ tuvierais
342
+ tuvieran
343
+ tuviese
344
+ tuvieses
345
+ tuviésemos
346
+ tuvieseis
347
+ tuviesen
348
+ teniendo
349
+ tenido
350
+ tenida
351
+ tenidos
352
+ tenidas
353
+ tened
354
+
@@ -0,0 +1,99 @@
1
+ # example set of basque stopwords
2
+ al
3
+ anitz
4
+ arabera
5
+ asko
6
+ baina
7
+ bat
8
+ batean
9
+ batek
10
+ bati
11
+ batzuei
12
+ batzuek
13
+ batzuetan
14
+ batzuk
15
+ bera
16
+ beraiek
17
+ berau
18
+ berauek
19
+ bere
20
+ berori
21
+ beroriek
22
+ beste
23
+ bezala
24
+ da
25
+ dago
26
+ dira
27
+ ditu
28
+ du
29
+ dute
30
+ edo
31
+ egin
32
+ ere
33
+ eta
34
+ eurak
35
+ ez
36
+ gainera
37
+ gu
38
+ gutxi
39
+ guzti
40
+ haiei
41
+ haiek
42
+ haietan
43
+ hainbeste
44
+ hala
45
+ han
46
+ handik
47
+ hango
48
+ hara
49
+ hari
50
+ hark
51
+ hartan
52
+ hau
53
+ hauei
54
+ hauek
55
+ hauetan
56
+ hemen
57
+ hemendik
58
+ hemengo
59
+ hi
60
+ hona
61
+ honek
62
+ honela
63
+ honetan
64
+ honi
65
+ hor
66
+ hori
67
+ horiei
68
+ horiek
69
+ horietan
70
+ horko
71
+ horra
72
+ horrek
73
+ horrela
74
+ horretan
75
+ horri
76
+ hortik
77
+ hura
78
+ izan
79
+ ni
80
+ noiz
81
+ nola
82
+ non
83
+ nondik
84
+ nongo
85
+ nor
86
+ nora
87
+ ze
88
+ zein
89
+ zen
90
+ zenbait
91
+ zenbat
92
+ zer
93
+ zergatik
94
+ ziren
95
+ zituen
96
+ zu
97
+ zuek
98
+ zuen
99
+ zuten