o2h 0.1.10 → 0.1.11

Sign up to get free protection for your applications and to get access to all the features.
data/lib/o2h.rb CHANGED
@@ -18,6 +18,9 @@ module O2h
18
18
  require 'newrelic_rpm'
19
19
  end
20
20
 
21
+ def host(recipe)
22
+ File.expand_path(File.join(%w{o2h recipes host} << recipe + ".rb"), File.dirname(__FILE__))
23
+ end
21
24
  end
22
25
 
23
26
  O2h.initialize!
@@ -0,0 +1 @@
1
+ O2h.capistrano.load O2h.host('bluepill')
@@ -0,0 +1 @@
1
+ O2h.capistrano.load O2h.host('passenger')
@@ -0,0 +1 @@
1
+ O2h.capistrano.load O2h.host('static')
@@ -0,0 +1 @@
1
+ O2h.capistrano.load O2h.host('unicorn')
@@ -1,16 +1,20 @@
1
+ set(:unicorn_binary){ "bundle exec unicorn" }
2
+ set(:unicorn_config){ "config/unicorn.rb" }
3
+ set(:unicorn_pid){ "#{shared_path}/pids/unicorn.pid" }
4
+
1
5
  namespace :deploy do
2
6
  desc "Zero-downtime restart of Unicorn"
3
7
  task :restart, :except => { :no_release => true } do
4
- run "kill -s USR2 `cat /tmp/unicorn.my_site.pid`"
8
+ run "kill -s USR2 `cat #{unicorn_pid}`"
5
9
  end
6
10
 
7
11
  desc "Start unicorn"
8
12
  task :start, :except => { :no_release => true } do
9
- run "cd #{current_path} ; bundle exec unicorn_rails -c config/unicorn.rb -D"
13
+ run "cd #{current_path}; #{unicorn_binary} -E #{rails_env} -c #{unicorn_config} -D"
10
14
  end
11
15
 
12
16
  desc "Stop unicorn"
13
17
  task :stop, :except => { :no_release => true } do
14
- run "kill -s QUIT `cat /tmp/unicorn.my_site.pid`"
18
+ run "kill -s QUIT `cat #{unicorn_pid}`"
15
19
  end
16
20
  end
@@ -1,3 +1,3 @@
1
1
  module O2h
2
- VERSION = "0.1.10"
2
+ VERSION = "0.1.11"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: o2h
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10
4
+ version: 0.1.11
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-12-06 00:00:00.000000000Z
12
+ date: 2011-12-08 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: newrelic_rpm
16
- requirement: &70273601463400 !ruby/object:Gem::Requirement
16
+ requirement: &70365463529100 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 3.3.0
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70273601463400
24
+ version_requirements: *70365463529100
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: capistrano
27
- requirement: &70273601460900 !ruby/object:Gem::Requirement
27
+ requirement: &70365463522420 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ~>
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: 2.9.0
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70273601460900
35
+ version_requirements: *70365463522420
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: rvm
38
- requirement: &70273601458720 !ruby/object:Gem::Requirement
38
+ requirement: &70365463521560 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ~>
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: 1.9.2
44
44
  type: :runtime
45
45
  prerelease: false
46
- version_requirements: *70273601458720
46
+ version_requirements: *70365463521560
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: pg_dumper
49
- requirement: &70273601457500 !ruby/object:Gem::Requirement
49
+ requirement: &70365463520380 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ~>
@@ -54,7 +54,7 @@ dependencies:
54
54
  version: 0.1.7
55
55
  type: :runtime
56
56
  prerelease: false
57
- version_requirements: *70273601457500
57
+ version_requirements: *70365463520380
58
58
  description: Collection of recipes and gem dependencies for o2h deployment
59
59
  email:
60
60
  - michal@o2h.cz
@@ -71,7 +71,11 @@ files:
71
71
  - Rakefile
72
72
  - lib/o2h.rb
73
73
  - lib/o2h/capistrano.rb
74
+ - lib/o2h/capistrano/deploy/bluepill.rb
75
+ - lib/o2h/capistrano/deploy/passenger.rb
76
+ - lib/o2h/capistrano/deploy/static.rb
74
77
  - lib/o2h/capistrano/deploy/strategy/git.rb
78
+ - lib/o2h/capistrano/deploy/unicorn.rb
75
79
  - lib/o2h/recipes.rb
76
80
  - lib/o2h/recipes/bundler.rb
77
81
  - lib/o2h/recipes/config.rb