slackistrano 3.1.1 → 3.8.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cbbeeb277ed313e84f791d5409e0b04a4248fb55
4
- data.tar.gz: feca4860c223fc8bc4efcd769e12aa777574251a
3
+ metadata.gz: 3a8353756db234daceeaa82ee93d7e09cdb1e696
4
+ data.tar.gz: e2270ff236ef7cb99a8a5ca9866685e72b948e5c
5
5
  SHA512:
6
- metadata.gz: f21d78cd5de97d8f59934f2ab96f4765a196ca2f9accee82b13d7277803a772e8c7268610e895ec148794d490316cd836ef53a4009da6a4116bf06a96f4cf3c3
7
- data.tar.gz: 7df8a8d6f66711c65d00791706bbb09fe662b3c9011846c166797a663b4fb8f8a014e20afa6d16d542f151396eff7042d2dd901ae9b6fec905f05ed3f9fe1468
6
+ metadata.gz: fb861d03629d874e95bfaa99021a77615a734ec369b2fd3d74cd9f26d71753a4ec4ef36b73e3ef6acab45b938db70c87348a655599ad5577110c093609b616f7
7
+ data.tar.gz: ddc5219bf447125f28518037dfbe9cb2fc4d66f08a295657bcc921d1c195c4c71cccf45ea2eefabf38bfb5d7c7afff56ffa292292c192c22813d9820a9e6bf19
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Slackistrano Change Log
2
2
 
3
+ 3.8.1
4
+ -----
5
+
6
+ - Changes to support capistrano 3.8.1 (hence the massive version bump) [#70, #71]
7
+
3
8
  3.1.1
4
9
  -----
5
10
 
data/README.md CHANGED
@@ -6,11 +6,9 @@
6
6
 
7
7
  Send notifications to [Slack](https://slack.com) about [Capistrano](http://www.capistranorb.com) deployments.
8
8
 
9
- **NOTE:** This README documents version >=3.1.0. You can read about 3.0.1 [here](https://github.com/phallstrom/slackistrano/tree/v3.0.1).
10
-
11
9
  ## Requirements
12
10
 
13
- - Capistrano >= 3.5.0
11
+ - Capistrano >= 3.8.1
14
12
  - Ruby >= 2.0
15
13
  - A Slack account
16
14
 
@@ -110,11 +110,7 @@ module Slackistrano
110
110
  end
111
111
 
112
112
  def dry_run?
113
- if ::Capistrano::Configuration.respond_to?(:dry_run?)
114
- ::Capistrano::Configuration.dry_run?
115
- else
116
- ::Capistrano::Configuration.env.send(:config)[:sshkit_backend] == SSHKit::Backend::Printer
117
- end
113
+ ::Capistrano::Configuration.env.dry_run?
118
114
  end
119
115
 
120
116
  def post_dry_run(payload)
@@ -1,3 +1,3 @@
1
1
  module Slackistrano
2
- VERSION = '3.1.1'
2
+ VERSION = '3.8.1'
3
3
  end
data/slackistrano.gemspec CHANGED
@@ -20,24 +20,11 @@ Gem::Specification.new do |gem|
20
20
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
21
21
  gem.require_paths = ["lib"]
22
22
 
23
- gem.add_dependency 'capistrano', '>= 3.5.0'
23
+ gem.add_dependency 'capistrano', '>= 3.8.1'
24
24
  gem.add_development_dependency 'rake'
25
25
  gem.add_development_dependency 'rspec'
26
26
  gem.add_development_dependency 'pry'
27
27
 
28
- gem.post_install_message = %Q{
29
- BREAKING: You must now `require 'slackistrano/capistrano'` in your Capfile.
30
- Previously it was just `require 'slackistrano'`. It is also no longer necessary
31
- to add `require: false` in your Gemfile, but it won't hurt to leave it.
32
-
33
- Your files should now look like this:
34
-
35
- Gemfile:
36
-
37
- gem 'slackistrano'
38
-
39
- Capfile:
40
-
41
- require 'slackistrano/capistrano'
42
- }
28
+ # gem.post_install_message = %Q{
29
+ # }
43
30
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slackistrano
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.1
4
+ version: 3.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Philip Hallstrom
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-08 00:00:00.000000000 Z
11
+ date: 2017-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 3.5.0
19
+ version: 3.8.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 3.5.0
26
+ version: 3.8.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -106,11 +106,7 @@ homepage: https://github.com/phallstrom/slackistrano
106
106
  licenses:
107
107
  - MIT
108
108
  metadata: {}
109
- post_install_message: "\n BREAKING: You must now `require 'slackistrano/capistrano'`
110
- in your Capfile.\n Previously it was just `require 'slackistrano'`. It is also
111
- no longer necessary\n to add `require: false` in your Gemfile, but it won't hurt
112
- to leave it.\n\n Your files should now look like this:\n\n Gemfile:\n\n gem
113
- 'slackistrano'\n\n Capfile:\n\n require 'slackistrano/capistrano'\n "
109
+ post_install_message:
114
110
  rdoc_options: []
115
111
  require_paths:
116
112
  - lib