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,251 @@
1
+ | From svn.tartarus.org/snowball/trunk/website/algorithms/portuguese/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 Portuguese 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 | of, from
18
+ a | the; to, at; her
19
+ o | the; him
20
+ que | who, that
21
+ e | and
22
+ do | de + o
23
+ da | de + a
24
+ em | in
25
+ um | a
26
+ para | for
27
+ | é from SER
28
+ com | with
29
+ não | not, no
30
+ uma | a
31
+ os | the; them
32
+ no | em + o
33
+ se | himself etc
34
+ na | em + a
35
+ por | for
36
+ mais | more
37
+ as | the; them
38
+ dos | de + os
39
+ como | as, like
40
+ mas | but
41
+ | foi from SER
42
+ ao | a + o
43
+ ele | he
44
+ das | de + as
45
+ | tem from TER
46
+ à | a + a
47
+ seu | his
48
+ sua | her
49
+ ou | or
50
+ | ser from SER
51
+ quando | when
52
+ muito | much
53
+ | há from HAV
54
+ nos | em + os; us
55
+ já | already, now
56
+ | está from EST
57
+ eu | I
58
+ também | also
59
+ só | only, just
60
+ pelo | per + o
61
+ pela | per + a
62
+ até | up to
63
+ isso | that
64
+ ela | he
65
+ entre | between
66
+ | era from SER
67
+ depois | after
68
+ sem | without
69
+ mesmo | same
70
+ aos | a + os
71
+ | ter from TER
72
+ seus | his
73
+ quem | whom
74
+ nas | em + as
75
+ me | me
76
+ esse | that
77
+ eles | they
78
+ | estão from EST
79
+ você | you
80
+ | tinha from TER
81
+ | foram from SER
82
+ essa | that
83
+ num | em + um
84
+ nem | nor
85
+ suas | her
86
+ meu | my
87
+ às | a + as
88
+ minha | my
89
+ | têm from TER
90
+ numa | em + uma
91
+ pelos | per + os
92
+ elas | they
93
+ | havia from HAV
94
+ | seja from SER
95
+ qual | which
96
+ | será from SER
97
+ nós | we
98
+ | tenho from TER
99
+ lhe | to him, her
100
+ deles | of them
101
+ essas | those
102
+ esses | those
103
+ pelas | per + as
104
+ este | this
105
+ | fosse from SER
106
+ dele | of him
107
+
108
+ | other words. There are many contractions such as naquele = em+aquele,
109
+ | mo = me+o, but they are rare.
110
+ | Indefinite article plural forms are also rare.
111
+
112
+ tu | thou
113
+ te | thee
114
+ vocês | you (plural)
115
+ vos | you
116
+ lhes | to them
117
+ meus | my
118
+ minhas
119
+ teu | thy
120
+ tua
121
+ teus
122
+ tuas
123
+ nosso | our
124
+ nossa
125
+ nossos
126
+ nossas
127
+
128
+ dela | of her
129
+ delas | of them
130
+
131
+ esta | this
132
+ estes | these
133
+ estas | these
134
+ aquele | that
135
+ aquela | that
136
+ aqueles | those
137
+ aquelas | those
138
+ isto | this
139
+ aquilo | that
140
+
141
+ | forms of estar, to be (not including the infinitive):
142
+ estou
143
+ está
144
+ estamos
145
+ estão
146
+ estive
147
+ esteve
148
+ estivemos
149
+ estiveram
150
+ estava
151
+ estávamos
152
+ estavam
153
+ estivera
154
+ estivéramos
155
+ esteja
156
+ estejamos
157
+ estejam
158
+ estivesse
159
+ estivéssemos
160
+ estivessem
161
+ estiver
162
+ estivermos
163
+ estiverem
164
+
165
+ | forms of haver, to have (not including the infinitive):
166
+ hei
167
+
168
+ havemos
169
+ hão
170
+ houve
171
+ houvemos
172
+ houveram
173
+ houvera
174
+ houvéramos
175
+ haja
176
+ hajamos
177
+ hajam
178
+ houvesse
179
+ houvéssemos
180
+ houvessem
181
+ houver
182
+ houvermos
183
+ houverem
184
+ houverei
185
+ houverá
186
+ houveremos
187
+ houverão
188
+ houveria
189
+ houveríamos
190
+ houveriam
191
+
192
+ | forms of ser, to be (not including the infinitive):
193
+ sou
194
+ somos
195
+ são
196
+ era
197
+ éramos
198
+ eram
199
+ fui
200
+ foi
201
+ fomos
202
+ foram
203
+ fora
204
+ fôramos
205
+ seja
206
+ sejamos
207
+ sejam
208
+ fosse
209
+ fôssemos
210
+ fossem
211
+ for
212
+ formos
213
+ forem
214
+ serei
215
+ será
216
+ seremos
217
+ serão
218
+ seria
219
+ seríamos
220
+ seriam
221
+
222
+ | forms of ter, to have (not including the infinitive):
223
+ tenho
224
+ tem
225
+ temos
226
+ tém
227
+ tinha
228
+ tínhamos
229
+ tinham
230
+ tive
231
+ teve
232
+ tivemos
233
+ tiveram
234
+ tivera
235
+ tivéramos
236
+ tenha
237
+ tenhamos
238
+ tenham
239
+ tivesse
240
+ tivéssemos
241
+ tivessem
242
+ tiver
243
+ tivermos
244
+ tiverem
245
+ terei
246
+ terá
247
+ teremos
248
+ terão
249
+ teria
250
+ teríamos
251
+ teriam
@@ -0,0 +1,233 @@
1
+ # This file was created by Jacques Savoy and is distributed under the BSD license.
2
+ # See http://members.unine.ch/jacques.savoy/clef/index.html.
3
+ # Also see http://www.opensource.org/licenses/bsd-license.html
4
+ acea
5
+ aceasta
6
+ această
7
+ aceea
8
+ acei
9
+ aceia
10
+ acel
11
+ acela
12
+ acele
13
+ acelea
14
+ acest
15
+ acesta
16
+ aceste
17
+ acestea
18
+ aceşti
19
+ aceştia
20
+ acolo
21
+ acum
22
+ ai
23
+ aia
24
+ aibă
25
+ aici
26
+ al
27
+ ăla
28
+ ale
29
+ alea
30
+ ălea
31
+ altceva
32
+ altcineva
33
+ am
34
+ ar
35
+ are
36
+
37
+ aşadar
38
+ asemenea
39
+ asta
40
+ ăsta
41
+ astăzi
42
+ astea
43
+ ăstea
44
+ ăştia
45
+ asupra
46
+ aţi
47
+ au
48
+ avea
49
+ avem
50
+ aveţi
51
+ azi
52
+ bine
53
+ bucur
54
+ bună
55
+ ca
56
+
57
+ căci
58
+ când
59
+ care
60
+ cărei
61
+ căror
62
+ cărui
63
+ cât
64
+ câte
65
+ câţi
66
+ către
67
+ câtva
68
+ ce
69
+ cel
70
+ ceva
71
+ chiar
72
+ cînd
73
+ cine
74
+ cineva
75
+ cît
76
+ cîte
77
+ cîţi
78
+ cîtva
79
+ contra
80
+ cu
81
+ cum
82
+ cumva
83
+ curând
84
+ curînd
85
+ da
86
+
87
+ dacă
88
+ dar
89
+ datorită
90
+ de
91
+ deci
92
+ deja
93
+ deoarece
94
+ departe
95
+ deşi
96
+ din
97
+ dinaintea
98
+ dintr
99
+ dintre
100
+ drept
101
+ după
102
+ ea
103
+ ei
104
+ el
105
+ ele
106
+ eram
107
+ este
108
+ eşti
109
+ eu
110
+ face
111
+ fără
112
+ fi
113
+ fie
114
+ fiecare
115
+ fii
116
+ fim
117
+ fiţi
118
+ iar
119
+ ieri
120
+ îi
121
+ îl
122
+ îmi
123
+ împotriva
124
+ în
125
+ înainte
126
+ înaintea
127
+ încât
128
+ încît
129
+ încotro
130
+ între
131
+ întrucât
132
+ întrucît
133
+ îţi
134
+ la
135
+ lângă
136
+ le
137
+ li
138
+ lîngă
139
+ lor
140
+ lui
141
+
142
+ mâine
143
+ mea
144
+ mei
145
+ mele
146
+ mereu
147
+ meu
148
+ mi
149
+ mine
150
+ mult
151
+ multă
152
+ mulţi
153
+ ne
154
+ nicăieri
155
+ nici
156
+ nimeni
157
+ nişte
158
+ noastră
159
+ noastre
160
+ noi
161
+ noştri
162
+ nostru
163
+ nu
164
+ ori
165
+ oricând
166
+ oricare
167
+ oricât
168
+ orice
169
+ oricînd
170
+ oricine
171
+ oricît
172
+ oricum
173
+ oriunde
174
+ până
175
+ pe
176
+ pentru
177
+ peste
178
+ pînă
179
+ poate
180
+ pot
181
+ prea
182
+ prima
183
+ primul
184
+ prin
185
+ printr
186
+ sa
187
+
188
+ săi
189
+ sale
190
+ sau
191
+ său
192
+ se
193
+ şi
194
+ sînt
195
+ sîntem
196
+ sînteţi
197
+ spre
198
+ sub
199
+ sunt
200
+ suntem
201
+ sunteţi
202
+ ta
203
+ tăi
204
+ tale
205
+ tău
206
+ te
207
+ ţi
208
+ ţie
209
+ tine
210
+ toată
211
+ toate
212
+ tot
213
+ toţi
214
+ totuşi
215
+ tu
216
+ un
217
+ una
218
+ unde
219
+ undeva
220
+ unei
221
+ unele
222
+ uneori
223
+ unor
224
+
225
+ vi
226
+ voastră
227
+ voastre
228
+ voi
229
+ voştri
230
+ vostru
231
+ vouă
232
+ vreo
233
+ vreun
@@ -0,0 +1,241 @@
1
+ | From svn.tartarus.org/snowball/trunk/website/algorithms/russian/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 russian stop word list. comments begin with vertical bar. each stop
9
+ | word is at the start of a line.
10
+
11
+ | this is a ranked list (commonest to rarest) of stopwords derived from
12
+ | a large text sample.
13
+
14
+ | letter `ё' is translated to `е'.
15
+
16
+ и | and
17
+ в | in/into
18
+ во | alternative form
19
+ не | not
20
+ что | what/that
21
+ он | he
22
+ на | on/onto
23
+ я | i
24
+ с | from
25
+ со | alternative form
26
+ как | how
27
+ а | milder form of `no' (but)
28
+ то | conjunction and form of `that'
29
+ все | all
30
+ она | she
31
+ так | so, thus
32
+ его | him
33
+ но | but
34
+ да | yes/and
35
+ ты | thou
36
+ к | towards, by
37
+ у | around, chez
38
+ же | intensifier particle
39
+ вы | you
40
+ за | beyond, behind
41
+ бы | conditional/subj. particle
42
+ по | up to, along
43
+ только | only
44
+ ее | her
45
+ мне | to me
46
+ было | it was
47
+ вот | here is/are, particle
48
+ от | away from
49
+ меня | me
50
+ еще | still, yet, more
51
+ нет | no, there isnt/arent
52
+ о | about
53
+ из | out of
54
+ ему | to him
55
+ теперь | now
56
+ когда | when
57
+ даже | even
58
+ ну | so, well
59
+ вдруг | suddenly
60
+ ли | interrogative particle
61
+ если | if
62
+ уже | already, but homonym of `narrower'
63
+ или | or
64
+ ни | neither
65
+ быть | to be
66
+ был | he was
67
+ него | prepositional form of его
68
+ до | up to
69
+ вас | you accusative
70
+ нибудь | indef. suffix preceded by hyphen
71
+ опять | again
72
+ уж | already, but homonym of `adder'
73
+ вам | to you
74
+ сказал | he said
75
+ ведь | particle `after all'
76
+ там | there
77
+ потом | then
78
+ себя | oneself
79
+ ничего | nothing
80
+ ей | to her
81
+ может | usually with `быть' as `maybe'
82
+ они | they
83
+ тут | here
84
+ где | where
85
+ есть | there is/are
86
+ надо | got to, must
87
+ ней | prepositional form of ей
88
+ для | for
89
+ мы | we
90
+ тебя | thee
91
+ их | them, their
92
+ чем | than
93
+ была | she was
94
+ сам | self
95
+ чтоб | in order to
96
+ без | without
97
+ будто | as if
98
+ человек | man, person, one
99
+ чего | genitive form of `what'
100
+ раз | once
101
+ тоже | also
102
+ себе | to oneself
103
+ под | beneath
104
+ жизнь | life
105
+ будет | will be
106
+ ж | short form of intensifer particle `же'
107
+ тогда | then
108
+ кто | who
109
+ этот | this
110
+ говорил | was saying
111
+ того | genitive form of `that'
112
+ потому | for that reason
113
+ этого | genitive form of `this'
114
+ какой | which
115
+ совсем | altogether
116
+ ним | prepositional form of `его', `они'
117
+ здесь | here
118
+ этом | prepositional form of `этот'
119
+ один | one
120
+ почти | almost
121
+ мой | my
122
+ тем | instrumental/dative plural of `тот', `то'
123
+ чтобы | full form of `in order that'
124
+ нее | her (acc.)
125
+ кажется | it seems
126
+ сейчас | now
127
+ были | they were
128
+ куда | where to
129
+ зачем | why
130
+ сказать | to say
131
+ всех | all (acc., gen. preposn. plural)
132
+ никогда | never
133
+ сегодня | today
134
+ можно | possible, one can
135
+ при | by
136
+ наконец | finally
137
+ два | two
138
+ об | alternative form of `о', about
139
+ другой | another
140
+ хоть | even
141
+ после | after
142
+ над | above
143
+ больше | more
144
+ тот | that one (masc.)
145
+ через | across, in
146
+ эти | these
147
+ нас | us
148
+ про | about
149
+ всего | in all, only, of all
150
+ них | prepositional form of `они' (they)
151
+ какая | which, feminine
152
+ много | lots
153
+ разве | interrogative particle
154
+ сказала | she said
155
+ три | three
156
+ эту | this, acc. fem. sing.
157
+ моя | my, feminine
158
+ впрочем | moreover, besides
159
+ хорошо | good
160
+ свою | ones own, acc. fem. sing.
161
+ этой | oblique form of `эта', fem. `this'
162
+ перед | in front of
163
+ иногда | sometimes
164
+ лучше | better
165
+ чуть | a little
166
+ том | preposn. form of `that one'
167
+ нельзя | one must not
168
+ такой | such a one
169
+ им | to them
170
+ более | more
171
+ всегда | always
172
+ конечно | of course
173
+ всю | acc. fem. sing of `all'
174
+ между | between
175
+
176
+
177
+ | b: some paradigms
178
+ |
179
+ | personal pronouns
180
+ |
181
+ | я меня мне мной [мною]
182
+ | ты тебя тебе тобой [тобою]
183
+ | он его ему им [него, нему, ним]
184
+ | она ее эи ею [нее, нэи, нею]
185
+ | оно его ему им [него, нему, ним]
186
+ |
187
+ | мы нас нам нами
188
+ | вы вас вам вами
189
+ | они их им ими [них, ним, ними]
190
+ |
191
+ | себя себе собой [собою]
192
+ |
193
+ | demonstrative pronouns: этот (this), тот (that)
194
+ |
195
+ | этот эта это эти
196
+ | этого эты это эти
197
+ | этого этой этого этих
198
+ | этому этой этому этим
199
+ | этим этой этим [этою] этими
200
+ | этом этой этом этих
201
+ |
202
+ | тот та то те
203
+ | того ту то те
204
+ | того той того тех
205
+ | тому той тому тем
206
+ | тем той тем [тою] теми
207
+ | том той том тех
208
+ |
209
+ | determinative pronouns
210
+ |
211
+ | (a) весь (all)
212
+ |
213
+ | весь вся все все
214
+ | всего всю все все
215
+ | всего всей всего всех
216
+ | всему всей всему всем
217
+ | всем всей всем [всею] всеми
218
+ | всем всей всем всех
219
+ |
220
+ | (b) сам (himself etc)
221
+ |
222
+ | сам сама само сами
223
+ | самого саму само самих
224
+ | самого самой самого самих
225
+ | самому самой самому самим
226
+ | самим самой самим [самою] самими
227
+ | самом самой самом самих
228
+ |
229
+ | stems of verbs `to be', `to have', `to do' and modal
230
+ |
231
+ | быть бы буд быв есть суть
232
+ | име
233
+ | дел
234
+ | мог мож мочь
235
+ | уме
236
+ | хоч хот
237
+ | долж
238
+ | можн
239
+ | нужн
240
+ | нельзя
241
+