thunder_punch 0.0.12 → 0.0.13
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.mdown +4 -0
- data/README.mdown +1 -1
- data/VERSION +1 -1
- data/lib/recipes/deployment/deployment.rb +2 -1
- data/lib/recipes/deployment/migration.rb +1 -1
- data/thunder_punch.gemspec +2 -2
- metadata +4 -4
data/CHANGELOG.mdown
CHANGED
data/README.mdown
CHANGED
@@ -34,4 +34,4 @@ By creating a central and organized system for our tasks we can reduce the conte
|
|
34
34
|
|
35
35
|
* ec2:create\_new\_ami task doesn't work at the moment due to the ec2:bundle_ami task not returning properly. See the TODO for more info.
|
36
36
|
|
37
|
-
Copyright (c) 2010 Critical Juncture, released under the MIT license
|
37
|
+
Copyright (c) 2010-2013 Critical Juncture, released under the MIT license
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.13
|
@@ -2,6 +2,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
2
2
|
|
3
3
|
#finalizing deploy is normal behaviour but in some (multi-server) environments we don't want that.
|
4
4
|
_cset :finalize_deploy, true
|
5
|
+
set :rake, "bundle exec rake"
|
5
6
|
|
6
7
|
namespace :deploy do
|
7
8
|
desc "Deploy the app"
|
@@ -86,4 +87,4 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
86
87
|
end
|
87
88
|
end
|
88
89
|
|
89
|
-
end
|
90
|
+
end
|
@@ -27,7 +27,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
27
27
|
else raise ArgumentError, "unknown migration target #{migrate_target.inspect}"
|
28
28
|
end
|
29
29
|
|
30
|
-
run "cd #{directory};
|
30
|
+
run "cd #{directory}; #{rake} RAILS_ENV=#{rails_env} #{migrate_env} db:migrate"
|
31
31
|
end
|
32
32
|
end #namespace
|
33
33
|
|
data/thunder_punch.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "thunder_punch"
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.13"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Bob Burbach"]
|
12
|
-
s.date = "2012-
|
12
|
+
s.date = "2012-11-09"
|
13
13
|
s.description = "Collection of capistano recipes for deployment and server tasks"
|
14
14
|
s.email = "info@criticaljuncture.org"
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thunder_punch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 5
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 13
|
10
|
+
version: 0.0.13
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Bob Burbach
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2012-
|
18
|
+
date: 2012-11-09 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: thoughtbot-shoulda
|