thunder_punch 0.0.11 → 0.0.12
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 +5 -1
- data/VERSION +1 -1
- data/lib/recipes/deployment/migration.rb +2 -2
- data/thunder_punch.gemspec +8 -13
- metadata +8 -11
data/CHANGELOG.mdown
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
== 0.0.12 (May 11, 2012)
|
|
2
|
+
|
|
3
|
+
* Use `bundle exec` when running `rake db:migrate`
|
|
4
|
+
|
|
1
5
|
== 0.0.11 (December 3, 2010)
|
|
2
6
|
|
|
3
7
|
* Force compilation of sass stylesheets. If you have an external error (like a missing directory or submodule) they won't update even if you fix it. We now just force to make sure updates happen on deployment.
|
|
@@ -50,4 +54,4 @@
|
|
|
50
54
|
|
|
51
55
|
== 0.0.1 (February 20, 2010)
|
|
52
56
|
|
|
53
|
-
* Initial Creation of Thunder Punch Plugin [Bob Burbach - github.com/peregrinator]
|
|
57
|
+
* Initial Creation of Thunder Punch Plugin [Bob Burbach - github.com/peregrinator]
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.12
|
|
@@ -27,8 +27,8 @@ 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}; #{rake} RAILS_ENV=#{rails_env} #{migrate_env} db:migrate"
|
|
30
|
+
run "cd #{directory}; bundle exec #{rake} RAILS_ENV=#{rails_env} #{migrate_env} db:migrate"
|
|
31
31
|
end
|
|
32
32
|
end #namespace
|
|
33
33
|
|
|
34
|
-
end
|
|
34
|
+
end
|
data/thunder_punch.gemspec
CHANGED
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
|
-
s.name =
|
|
8
|
-
s.version = "0.0.
|
|
7
|
+
s.name = "thunder_punch"
|
|
8
|
+
s.version = "0.0.12"
|
|
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 =
|
|
13
|
-
s.description =
|
|
14
|
-
s.email =
|
|
12
|
+
s.date = "2012-05-11"
|
|
13
|
+
s.description = "Collection of capistano recipes for deployment and server tasks"
|
|
14
|
+
s.email = "info@criticaljuncture.org"
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
16
|
"README.mdown"
|
|
17
17
|
]
|
|
@@ -50,17 +50,12 @@ Gem::Specification.new do |s|
|
|
|
50
50
|
"test/test_thunder_punch.rb",
|
|
51
51
|
"thunder_punch.gemspec"
|
|
52
52
|
]
|
|
53
|
-
s.homepage =
|
|
53
|
+
s.homepage = "http://github.com/critical/thunder_punch"
|
|
54
54
|
s.require_paths = ["lib"]
|
|
55
|
-
s.rubygems_version =
|
|
56
|
-
s.summary =
|
|
57
|
-
s.test_files = [
|
|
58
|
-
"test/helper.rb",
|
|
59
|
-
"test/test_thunder_punch.rb"
|
|
60
|
-
]
|
|
55
|
+
s.rubygems_version = "1.8.10"
|
|
56
|
+
s.summary = "Collection of capistano recipes for deployment and server tasks"
|
|
61
57
|
|
|
62
58
|
if s.respond_to? :specification_version then
|
|
63
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
64
59
|
s.specification_version = 3
|
|
65
60
|
|
|
66
61
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
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:
|
|
5
|
-
prerelease:
|
|
4
|
+
hash: 7
|
|
5
|
+
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 12
|
|
10
|
+
version: 0.0.12
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Bob Burbach
|
|
@@ -15,8 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date:
|
|
19
|
-
default_executable:
|
|
18
|
+
date: 2012-05-11 00:00:00 Z
|
|
20
19
|
dependencies:
|
|
21
20
|
- !ruby/object:Gem::Dependency
|
|
22
21
|
name: thoughtbot-shoulda
|
|
@@ -90,7 +89,6 @@ files:
|
|
|
90
89
|
- test/helper.rb
|
|
91
90
|
- test/test_thunder_punch.rb
|
|
92
91
|
- thunder_punch.gemspec
|
|
93
|
-
has_rdoc: true
|
|
94
92
|
homepage: http://github.com/critical/thunder_punch
|
|
95
93
|
licenses: []
|
|
96
94
|
|
|
@@ -120,10 +118,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
120
118
|
requirements: []
|
|
121
119
|
|
|
122
120
|
rubyforge_project:
|
|
123
|
-
rubygems_version: 1.
|
|
121
|
+
rubygems_version: 1.8.10
|
|
124
122
|
signing_key:
|
|
125
123
|
specification_version: 3
|
|
126
124
|
summary: Collection of capistano recipes for deployment and server tasks
|
|
127
|
-
test_files:
|
|
128
|
-
|
|
129
|
-
- test/test_thunder_punch.rb
|
|
125
|
+
test_files: []
|
|
126
|
+
|