capistrano-rails 1.6.1 → 1.6.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7d76466b0fb795e270e25110b88f38bfb6d67a55a45e46a90fb0b0e755f86a76
4
- data.tar.gz: ca2b9eb9d4dd79fb42dcb82c430c5a3549d72644366dbce22a518779570e2992
3
+ metadata.gz: ebebb5039f1e35f8896281d75067e2c47b1074c00be05f15d0ee5b35c3b23b1f
4
+ data.tar.gz: 74ff2d75adbad972666ddd1ba1506cf83d6e252f3f05a9741a7d4b6a4b47d553
5
5
  SHA512:
6
- metadata.gz: f80894d373016df435d82ebb3d0f6db6d6d6c96ac58dfe8faf66e53cd4f28a7a7fc3b709e48ea94e55d49892afab5fe561a8b2b17ddbf51a9e5490a820f3d370
7
- data.tar.gz: aa00024a5e38aa9f36427ef80b497f053168ac740e40da3b4ca3ee9080573f3c2931a0bc4a0c6f6b39c2a1c26322bac4bf8e16a1a0d097205f4f7e0eaac003fb
6
+ metadata.gz: bcfd13b714ad1be19b37ee1d785b574533bdf895bfc1ebe5e849dd4b896869284becbc8cd2675f7861c16c8de49260bc1efec16e6bc7ae46f88256b1224b8485
7
+ data.tar.gz: 6c3c3c35bd3747d89b7182c0021ce591f03db621a39c2d6823f32126be0a0c03038b4c473a282d6e9e841a208e9997c60aa44c084e0333f5a22f911e352dbe4d
@@ -8,16 +8,9 @@ request... were there any bugs you had fixed? If so, mention them. If
8
8
  these bugs have open GitHub issues, be sure to tag them here as well,
9
9
  to keep the conversation linked together.
10
10
 
11
- ### Short checklist
12
-
13
- - [ ] If you are fixing a bug or introducing a new feature, did you add a CHANGELOG entry?
14
-
15
11
  ### Other Information
16
12
 
17
13
  If there's anything else that's important and relevant to your pull
18
14
  request, mention that information here.
19
15
 
20
- If you are updating any of the CHANGELOG files or are asked to update the
21
- CHANGELOG files by reviewers, please add the CHANGELOG entry at the top of the file where indicated.
22
-
23
16
  Thanks for helping improve Capistrano!
@@ -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.6.1'
7
+ gem.version = '1.6.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}
@@ -10,7 +10,7 @@ namespace :deploy do
10
10
  if conditionally_migrate && test(:diff, "-qr #{release_path}/db #{current_path}/db")
11
11
  info '[deploy:migrate] Skip `deploy:migrate` (nothing changed in db)'
12
12
  else
13
- info '[deploy:migrate] Run `rake db:migrate`'
13
+ info "[deploy:migrate] Run `rake #{fetch(:migration_command)}`"
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
15
  invoke :'deploy:migrating' unless Rake::Task[:'deploy:migrating'].instance_variable_get(:@already_invoked)
16
16
  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.6.1
4
+ version: 1.6.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: 2020-07-12 00:00:00.000000000 Z
13
+ date: 2022-02-20 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: capistrano
@@ -109,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
111
  requirements: []
112
- rubygems_version: 3.1.4
112
+ rubygems_version: 3.3.7
113
113
  signing_key:
114
114
  specification_version: 4
115
115
  summary: Rails specific Capistrano tasks