eycap 0.5.3 → 0.5.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,13 @@
1
- == 0.5.3 / 2009-12-17
1
+ == 0.5.5 / 2009-3-16
2
+ * fixed 2 bugs that are in 0.5.4 with the SSL and bundler recipes
3
+ * use this version with bundler version 0.9.2
4
+
5
+ == 0.5.4 / 2009-3-16
6
+ * fixed gem bundler issue
7
+
8
+ == 0.5.3 / 2009-1-27
2
9
  * created task cap ssl:create
10
+ * use this version with bundler version 0.8
3
11
 
4
12
  == 0.5.2 / 2009-12-17
5
13
  * renamed task cap slice:tail_production_logs to cap slice:tail_environment_logs
@@ -1,3 +1,5 @@
1
1
  module Eycap
2
- VERSION = '0.5.3'
2
+
3
+ VERSION = '0.5.5'
4
+
3
5
  end
@@ -63,7 +63,7 @@ module Capistrano
63
63
  self.close
64
64
 
65
65
  hooks = [:any]
66
- hooks << self.successful? ? :success : :failure
66
+ hooks << (self.successful? ? :success : :failure)
67
67
  puts "Executing Post Processing Hooks"
68
68
  hooks.each do |h|
69
69
  @_post_process_hooks[h].each do |key|
@@ -122,4 +122,4 @@ module Capistrano
122
122
  end
123
123
 
124
124
  end
125
- end
125
+ end
@@ -2,8 +2,8 @@ Capistrano::Configuration.instance(:must_exist).load do
2
2
  namespace :bundler do
3
3
  desc "Automatically installed your bundled gems if a Gemfile exists"
4
4
  task :bundle_gems do
5
- run "if [ -f #{release_path}/Gemfile ]; then cd #{release_path} && gem bundle --cached; fi"
5
+ run "if [ -f #{release_path}/Gemfile ]; then cd #{release_path} && bundle install; fi"
6
6
  end
7
7
  after "deploy:symlink_configs","bundler:bundle_gems"
8
8
  end
9
- end
9
+ end
metadata CHANGED
@@ -1,7 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eycap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 5
8
+ - 5
9
+ version: 0.5.5
5
10
  platform: ruby
6
11
  authors:
7
12
  - Engine Yard
@@ -9,30 +14,38 @@ autorequire:
9
14
  bindir: bin
10
15
  cert_chain: []
11
16
 
12
- date: 2010-01-27 00:00:00 -05:00
17
+ date: 2009-10-07 00:00:00 -04:00
13
18
  default_executable:
14
19
  dependencies:
15
20
  - !ruby/object:Gem::Dependency
16
21
  name: capistrano
17
- type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
20
24
  requirements:
21
25
  - - ">="
22
26
  - !ruby/object:Gem::Version
27
+ segments:
28
+ - 2
29
+ - 2
30
+ - 0
23
31
  version: 2.2.0
24
- version:
32
+ type: :runtime
33
+ version_requirements: *id001
25
34
  - !ruby/object:Gem::Dependency
26
35
  name: hoe
27
- type: :development
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
36
+ prerelease: false
37
+ requirement: &id002 !ruby/object:Gem::Requirement
30
38
  requirements:
31
39
  - - ">="
32
40
  - !ruby/object:Gem::Version
33
- version: 2.3.3
34
- version:
35
- description: A bunch of useful recipes to help deployment to Engine Yard private cloud slices
41
+ segments:
42
+ - 1
43
+ - 5
44
+ - 1
45
+ version: 1.5.1
46
+ type: :runtime
47
+ version_requirements: *id002
48
+ description: A bunch of useful recipes to help deployment to the Engine Yard private cloud.
36
49
  email: appsupport@engineyard.com
37
50
  executables: []
38
51
 
@@ -55,7 +68,6 @@ files:
55
68
  - lib/eycap/recipes.rb
56
69
  - lib/eycap/recipes/backgroundrb.rb
57
70
  - lib/eycap/recipes/database.rb
58
- - lib/eycap/recipes/bundler.rb
59
71
  - lib/eycap/recipes/deploy.rb
60
72
  - lib/eycap/recipes/ferret.rb
61
73
  - lib/eycap/recipes/juggernaut.rb
@@ -63,14 +75,15 @@ files:
63
75
  - lib/eycap/recipes/mongrel.rb
64
76
  - lib/eycap/recipes/monit.rb
65
77
  - lib/eycap/recipes/nginx.rb
78
+ - lib/eycap/recipes/passenger.rb
66
79
  - lib/eycap/recipes/slice.rb
67
80
  - lib/eycap/recipes/solr.rb
68
81
  - lib/eycap/recipes/sphinx.rb
82
+ - lib/eycap/recipes/ssl.rb
69
83
  - lib/eycap/recipes/templates/maintenance.rhtml
70
84
  - lib/eycap/recipes/tomcat.rb
71
- - lib/eycap/recipes/passenger.rb
72
85
  - lib/eycap/recipes/apache.rb
73
- - lib/eycap/recipes/ssl.rb
86
+ - lib/eycap/recipes/bundler.rb
74
87
  - test/test_eycap.rb
75
88
  - test/test_helper.rb
76
89
  has_rdoc: true
@@ -87,21 +100,23 @@ required_ruby_version: !ruby/object:Gem::Requirement
87
100
  requirements:
88
101
  - - ">="
89
102
  - !ruby/object:Gem::Version
103
+ segments:
104
+ - 0
90
105
  version: "0"
91
- version:
92
106
  required_rubygems_version: !ruby/object:Gem::Requirement
93
107
  requirements:
94
108
  - - ">="
95
109
  - !ruby/object:Gem::Version
110
+ segments:
111
+ - 0
96
112
  version: "0"
97
- version:
98
113
  requirements: []
99
114
 
100
115
  rubyforge_project: eycap
101
- rubygems_version: 1.3.5
116
+ rubygems_version: 1.3.6
102
117
  signing_key:
103
- specification_version: 3
104
- summary: Capistrano tasks for Engine Yard private cloud slices
118
+ specification_version: 2
119
+ summary: Capistrano tasks for Engine Yard private cloud.
105
120
  test_files:
106
121
  - test/test_eycap.rb
107
122
  - test/test_helper.rb