cap-recipes 0.3.32 → 0.3.33

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 (4) hide show
  1. data/README.textile +28 -4
  2. data/VERSION.yml +1 -1
  3. data/cap-recipes.gemspec +1 -1
  4. metadata +1 -1
@@ -68,8 +68,10 @@ These recipes manage the apache web server
68
68
 
69
69
  h4. Configuration
70
70
 
71
+
71
72
  * apache_init_path - the path to the init.d apache file [default: '/etc/init.d/apache2']
72
73
 
74
+
73
75
  h4. Tasks
74
76
 
75
77
  manage.rb
@@ -86,8 +88,10 @@ h3. Ruby
86
88
 
87
89
  h4. Configuration
88
90
 
91
+
89
92
  * None required
90
93
 
94
+
91
95
  h4. Tasks
92
96
 
93
97
  install.rb
@@ -98,9 +102,11 @@ h3. Rubygems
98
102
 
99
103
  h4. Configuration
100
104
 
105
+
101
106
  * rubygem_paths - a path or array of paths to your gem binaries [default '/usr/bin/gem' ]
102
107
  * rubygems_version - which version of rubygems to install [default '1.3.5']
103
108
 
109
+
104
110
  h4. Tasks
105
111
 
106
112
  manage.rb
@@ -122,6 +128,7 @@ These recipes manage the passenger module for apache
122
128
 
123
129
  h4. Configuration
124
130
 
131
+
125
132
  * base_ruby_path - the base path to the ruby installation [default: '/usr']
126
133
  * local_ping_path - the localhost path to ping to start passenger [default: "http://localhost"]
127
134
 
@@ -131,6 +138,7 @@ The following files and folders are expected to exist:
131
138
  * "#{base_ruby_path}/bin/ruby"
132
139
  * "#{base_ruby_path}/bin/gem"
133
140
 
141
+
134
142
  h4. Tasks
135
143
 
136
144
  manage.rb
@@ -183,9 +191,11 @@ These recipes are for tobi's delayed_job plugin for background job queue process
183
191
 
184
192
  h4. Configuration
185
193
 
194
+
186
195
  * delayed_script_path - the path to the delayed job script [default: '#{current_path}/script/delayed_job']
187
196
  * delayed_job_env - the rails environment [default: 'production']
188
197
 
198
+
189
199
  h4. Tasks
190
200
 
191
201
  manage.rb
@@ -208,10 +218,12 @@ These recipes are for backgroundrb job queue processing
208
218
 
209
219
  h4. Configuration
210
220
 
221
+
211
222
  * backgroundrb_log - the path to the backgroundrb log file
212
223
  * backgroundrb_host - the background host machine ip [default: 'localhost']
213
224
  * backgroundrb_env - the rails environment [default: 'production']
214
225
 
226
+
215
227
  h4. Tasks
216
228
 
217
229
  manage.rb
@@ -236,10 +248,12 @@ These recipes are for managing the juggernaut push server
236
248
 
237
249
  h4. Configuration
238
250
 
251
+
239
252
  * juggernaut_config - path to juggernaut config file [default: "#{current_path}/config/juggernaut.yml"]
240
253
  * juggernaut_pid - path to juggernaut pid file [default: "#{current_path}/tmp/pids/juggernaut.pid"]
241
254
  * juggernaut_log - path to juggernaut log file [default: "#{current_path}/log/juggernaut.log"]
242
255
 
256
+
243
257
  h4. Tasks
244
258
 
245
259
  manage.rb
@@ -263,8 +277,10 @@ These recipes are for managing the thinking_sphinx search index daemon
263
277
 
264
278
  h4. Configuration
265
279
 
280
+
266
281
  * None required
267
282
 
283
+
268
284
  h4. Tasks
269
285
 
270
286
  manage.rb
@@ -293,12 +309,14 @@ These recipes are for managing the memcached caching mechanism
293
309
 
294
310
  h4. Configuration
295
311
 
312
+
296
313
  * memcache_init_path - path to memcache config file [default: "/etc/init.d/memcache"]
297
314
  * memcache_size - the total size of memory to use [default: 64]
298
315
  * memcache_port - the port to start memcache [default: '11211']
299
316
  * memcache_host - the host for memcache [default: '127.0.0.1']
300
317
  * memcache_user - the user to run memcache [default: 'nobody']
301
318
 
319
+
302
320
  h4. Tasks
303
321
 
304
322
  manage.rb
@@ -323,8 +341,10 @@ These recipes are for installing Gitosis Git Repository Hosting
323
341
 
324
342
  h4. Configuration
325
343
 
344
+
326
345
  * None required
327
-
346
+
347
+
328
348
  h4. Tasks
329
349
 
330
350
  install.rb
@@ -337,8 +357,10 @@ These recipes are for managing whenever cron job scheduling
337
357
 
338
358
  h4. Configuration
339
359
 
360
+
340
361
  * None required
341
-
362
+
363
+
342
364
  h4. Tasks
343
365
 
344
366
  manage.rb
@@ -438,13 +460,15 @@ to browse all available utility methods. A few are listed below:
438
460
  ** Forces tasks in block to execute using the given user/password credentials
439
461
  ** This is useful because of certain limitations in capistrano
440
462
 
441
- h2. CONTRIBUTERS
463
+ h2. CONTRIBUTORS
464
+
465
+ The following people are the reason this library exists:
442
466
 
443
467
  * nesquena [Nathan Esquenazi] - created and maintaining the library
444
468
  * achiu [Arthur Chiu] - contributed gitosis, ruby and other recipes
445
469
  * hubertlepicki - contributed thinking_sphinx recipes
446
470
 
447
- h2. LICENSE:
471
+ h2. LICENSE
448
472
 
449
473
  (The MIT License)
450
474
 
@@ -2,4 +2,4 @@
2
2
  :major: 0
3
3
  :minor: 3
4
4
  :build:
5
- :patch: 32
5
+ :patch: 33
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{cap-recipes}
8
- s.version = "0.3.32"
8
+ s.version = "0.3.33"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Nathan Esquenazi"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cap-recipes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.32
4
+ version: 0.3.33
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Esquenazi