thunder_punch 0.0.12 → 0.0.13

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/CHANGELOG.mdown CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.0.13 (Nov 9, 2012)
2
+ * Set rake to be "bundle exec rake" so that bundler is used for rake by
3
+ default. This prevents problems on servers that end up with multiple rakes.
4
+
1
5
  == 0.0.12 (May 11, 2012)
2
6
 
3
7
  * Use `bundle exec` when running `rake db:migrate`
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.12
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}; bundle exec #{rake} RAILS_ENV=#{rails_env} #{migrate_env} db:migrate"
30
+ run "cd #{directory}; #{rake} RAILS_ENV=#{rails_env} #{migrate_env} db:migrate"
31
31
  end
32
32
  end #namespace
33
33
 
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "thunder_punch"
8
- s.version = "0.0.12"
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-05-11"
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: 7
4
+ hash: 5
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 12
10
- version: 0.0.12
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-05-11 00:00:00 Z
18
+ date: 2012-11-09 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: thoughtbot-shoulda