eycap 0.5.8 → 0.5.9

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.
data/History.txt CHANGED
@@ -1,8 +1,10 @@
1
+ == 0.5.9 / 2011-01-28
2
+ * bug fix for bundle install command
1
3
  == 0.5.8 / 2009-12-21
2
4
  * updated database clone to local task - adding ability to use mysql2 adapter.
3
5
 
4
6
  == 0.5.7 / 2009-12-21
5
- * updated database tasks - new xCloud infrastructure requires staging databases to use master not replica for tasks
7
+ * updated database tasks - new xCloud infrastructure requires staging da2tabases to use master not replica for tasks
6
8
 
7
9
  == 0.5.6 / 2009-6-17
8
10
  * updated bundler task so it won't install test or development gems
data/lib/eycap.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Eycap
2
- VERSION = '0.5.8'
2
+ VERSION = '0.5.9'
3
3
  end
@@ -2,7 +2,7 @@ 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} && bundle install --without=test,development; fi"
5
+ run "if [ -f #{release_path}/Gemfile ]; then cd #{release_path} && bundle install --without=test development --path /var/cache/engineyard/; fi"
6
6
  end
7
7
  after "deploy:symlink_configs","bundler:bundle_gems"
8
8
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eycap
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
5
- prerelease: false
4
+ hash: 25
5
+ prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 5
9
- - 8
10
- version: 0.5.8
9
+ - 9
10
+ version: 0.5.9
11
11
  platform: ruby
12
12
  authors:
13
13
  - Engine Yard
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2009-10-07 00:00:00 -04:00
18
+ date: 2011-01-28 00:00:00 -05:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -42,15 +42,15 @@ dependencies:
42
42
  requirements:
43
43
  - - ">="
44
44
  - !ruby/object:Gem::Version
45
- hash: 1
45
+ hash: 47
46
46
  segments:
47
- - 1
48
- - 5
49
- - 1
50
- version: 1.5.1
51
- type: :runtime
47
+ - 2
48
+ - 8
49
+ - 0
50
+ version: 2.8.0
51
+ type: :development
52
52
  version_requirements: *id002
53
- description: A bunch of useful recipes to help deployment to the Engine Yard private cloud.
53
+ description: A bunch of useful recipes to help deployment to Engine Yard private cloud slices
54
54
  email: appsupport@engineyard.com
55
55
  executables: []
56
56
 
@@ -73,6 +73,7 @@ files:
73
73
  - lib/eycap/recipes.rb
74
74
  - lib/eycap/recipes/backgroundrb.rb
75
75
  - lib/eycap/recipes/database.rb
76
+ - lib/eycap/recipes/bundler.rb
76
77
  - lib/eycap/recipes/deploy.rb
77
78
  - lib/eycap/recipes/ferret.rb
78
79
  - lib/eycap/recipes/juggernaut.rb
@@ -80,15 +81,14 @@ files:
80
81
  - lib/eycap/recipes/mongrel.rb
81
82
  - lib/eycap/recipes/monit.rb
82
83
  - lib/eycap/recipes/nginx.rb
83
- - lib/eycap/recipes/passenger.rb
84
84
  - lib/eycap/recipes/slice.rb
85
85
  - lib/eycap/recipes/solr.rb
86
86
  - lib/eycap/recipes/sphinx.rb
87
- - lib/eycap/recipes/ssl.rb
88
87
  - lib/eycap/recipes/templates/maintenance.rhtml
89
88
  - lib/eycap/recipes/tomcat.rb
89
+ - lib/eycap/recipes/passenger.rb
90
90
  - lib/eycap/recipes/apache.rb
91
- - lib/eycap/recipes/bundler.rb
91
+ - lib/eycap/recipes/ssl.rb
92
92
  - test/test_eycap.rb
93
93
  - test/test_helper.rb
94
94
  has_rdoc: true
@@ -122,10 +122,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
122
122
  requirements: []
123
123
 
124
124
  rubyforge_project: eycap
125
- rubygems_version: 1.3.7
125
+ rubygems_version: 1.4.2
126
126
  signing_key:
127
- specification_version: 2
128
- summary: Capistrano tasks for Engine Yard private cloud.
127
+ specification_version: 3
128
+ summary: Capistrano tasks for Engine Yard private cloud slices
129
129
  test_files:
130
130
  - test/test_eycap.rb
131
131
  - test/test_helper.rb