eycap 0.5.18 → 0.5.19
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 +4 -1
- data/lib/eycap/recipes/deploy.rb +1 -1
- metadata +6 -8
data/History.txt
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
== 0.5.19 / 2011-07-19
|
|
2
|
+
* Removed redundant bundle exec from rake db:migrate task as bundler will inject 'bundle exec rake' it since 1.0.8.
|
|
3
|
+
|
|
1
4
|
== 0.5.18 / 2011-05-24
|
|
2
5
|
* Added task to tail apache logs. (lightcap)
|
|
3
6
|
* Using --binstubs to put executables in app_root/bin. (lightcap)
|
|
@@ -37,7 +40,7 @@
|
|
|
37
40
|
* updated database clone to local task - adding ability to use mysql2 adapter.
|
|
38
41
|
|
|
39
42
|
== 0.5.7 / 2009-12-21
|
|
40
|
-
* updated database tasks - new xCloud infrastructure requires staging
|
|
43
|
+
* updated database tasks - new xCloud infrastructure requires staging databases to use master not replica for tasks
|
|
41
44
|
|
|
42
45
|
== 0.5.6 / 2009-6-17
|
|
43
46
|
* updated bundler task so it won't install test or development gems
|
data/lib/eycap/recipes/deploy.rb
CHANGED
|
@@ -54,7 +54,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
|
54
54
|
else raise ArgumentError, "unknown migration target #{migrate_target.inspect}"
|
|
55
55
|
end
|
|
56
56
|
|
|
57
|
-
run "if [ -f #{release_path}/Gemfile ] ; then cd #{directory};
|
|
57
|
+
run "if [ -f #{release_path}/Gemfile ] ; then cd #{directory}; #{rake} #{framework.upcase}_ENV=#{app_env} #{migrate_env} db:migrate ; else cd #{directory}; #{rake} #{framework.upcase}_ENV=#{app_env} #{migrate_env} db:migrate ; fi"
|
|
58
58
|
end
|
|
59
59
|
|
|
60
60
|
desc "Display the maintenance.html page while deploying with migrations. Then it restarts and enables the site again."
|
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:
|
|
5
|
-
prerelease:
|
|
4
|
+
hash: 45
|
|
5
|
+
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 5
|
|
9
|
-
-
|
|
10
|
-
version: 0.5.
|
|
9
|
+
- 19
|
|
10
|
+
version: 0.5.19
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Engine Yard
|
|
@@ -15,8 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-
|
|
19
|
-
default_executable:
|
|
18
|
+
date: 2011-07-19 00:00:00 Z
|
|
20
19
|
dependencies:
|
|
21
20
|
- !ruby/object:Gem::Dependency
|
|
22
21
|
name: capistrano
|
|
@@ -94,7 +93,6 @@ files:
|
|
|
94
93
|
- lib/eycap/recipes/resque.rb
|
|
95
94
|
- test/test_eycap.rb
|
|
96
95
|
- test/test_helper.rb
|
|
97
|
-
has_rdoc: true
|
|
98
96
|
homepage: http://github.com/engineyard/eycap
|
|
99
97
|
licenses: []
|
|
100
98
|
|
|
@@ -125,7 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
125
123
|
requirements: []
|
|
126
124
|
|
|
127
125
|
rubyforge_project: eycap
|
|
128
|
-
rubygems_version: 1.
|
|
126
|
+
rubygems_version: 1.8.5
|
|
129
127
|
signing_key:
|
|
130
128
|
specification_version: 2
|
|
131
129
|
summary: Capistrano tasks for Engine Yard private cloud.
|