capistrano-rails 1.2.1 → 1.2.2
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/capistrano-rails.gemspec +1 -1
- data/lib/capistrano/tasks/migrations.rake +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 84c98cfef8f55576fe2fc8d72acebcd8183476cd
|
|
4
|
+
data.tar.gz: aab51579d211801aa6a6aadcca297ad6c49291a8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37f88c84af182ffc12bb0d737b7a5a98a25a046128d61f4d219253308748e90da72bfa39017f513c8f51c827ef250f2d4dad3d5b3eef6e8d99122e2be25ee7f8
|
|
7
|
+
data.tar.gz: 5dccba6f3da2b398bd95c2a2cd1df5ed7ca23c4f5fb6f36a2fb470414c62d446bb545c037e481794fa7a04f4795e9dae130b4535d0b1dff876fba1bc142ffbff
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
* Your contribution here!
|
|
4
4
|
|
|
5
|
+
# [1.2.2][] (Jan 10 2017)
|
|
6
|
+
|
|
7
|
+
* Restored compatibility with older versions of Rake (< 11.0.0), introduced in previous change. (@toupeira)
|
|
8
|
+
|
|
5
9
|
# [1.2.1][] (Dec 23 2016)
|
|
6
10
|
|
|
7
11
|
* Diff db directory recursively
|
|
@@ -65,6 +69,7 @@
|
|
|
65
69
|
|
|
66
70
|
Initial release
|
|
67
71
|
|
|
68
|
-
[master]: https://github.com/capistrano/rails/compare/v1.2.
|
|
72
|
+
[master]: https://github.com/capistrano/rails/compare/v1.2.2...HEAD
|
|
73
|
+
[1.2.2]: https://github.com/capistrano/rails/compare/v1.2.1...v1.2.2
|
|
69
74
|
[1.2.1]: https://github.com/capistrano/rails/compare/v1.2.0...v1.2.1
|
|
70
75
|
[1.2.0]: https://github.com/capistrano/rails/compare/v1.1.8...v1.2.0
|
data/capistrano-rails.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |gem|
|
|
6
6
|
gem.name = "capistrano-rails"
|
|
7
|
-
gem.version = '1.2.
|
|
7
|
+
gem.version = '1.2.2'
|
|
8
8
|
gem.authors = ["Tom Clements", "Lee Hambley", "Kir Shatrov"]
|
|
9
9
|
gem.email = ["seenmyfate@gmail.com", "lee.hambley@gmail.com", "shatrov@me.com"]
|
|
10
10
|
gem.description = %q{Rails specific Capistrano tasks}
|
|
@@ -11,7 +11,8 @@ namespace :deploy do
|
|
|
11
11
|
info '[deploy:migrate] Skip `deploy:migrate` (nothing changed in db)'
|
|
12
12
|
else
|
|
13
13
|
info '[deploy:migrate] Run `rake db:migrate`'
|
|
14
|
-
|
|
14
|
+
# NOTE: We access instance variable since the accessor was only added recently. Once capistrano-rails depends on rake 11+, we can revert the following line
|
|
15
|
+
invoke :'deploy:migrating' unless Rake::Task[:'deploy:migrating'].instance_variable_get(:@already_invoked)
|
|
15
16
|
end
|
|
16
17
|
end
|
|
17
18
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tom Clements
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2017-01-10 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: capistrano
|