slackistrano 3.8.2 → 3.8.3
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 +5 -5
- data/README.md +2 -1
- data/lib/slackistrano/messaging/helpers.rb +2 -1
- data/lib/slackistrano/version.rb +1 -1
- data/spec/messaging/helpers_spec.rb +12 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 4182bb65adae4e85721e87b7e8efd88dd44224ddab390954eaed03176d1d6e4c
|
|
4
|
+
data.tar.gz: 83ca4551f0befdd201a20692842a294c4c663f42b008e73fa8a2a9060ba3b4d0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: faa855d33d46be35c352cbfebce4821db657700574d462571ac1ad083e067629e28508de62cd33c5fc9c0567663edae2ec1d4663c282ab958f5267c08d791220
|
|
7
|
+
data.tar.gz: b1f5ba9ac2df0d4a9599113207282a6a54151f35a3f018d794c1a481ae258dc19ccf27335aa595634752d89553db56953505f6c8a657f74f9e53f45a79cffa46
|
data/README.md
CHANGED
data/lib/slackistrano/version.rb
CHANGED
|
@@ -35,6 +35,18 @@ describe Slackistrano::Messaging::Default do
|
|
|
35
35
|
end
|
|
36
36
|
end
|
|
37
37
|
|
|
38
|
+
describe '#deployer' do
|
|
39
|
+
it "delegates to fetch" do
|
|
40
|
+
expect(subject).to receive(:fetch).with(:local_user, anything)
|
|
41
|
+
subject.deployer
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
it "has a default" do
|
|
45
|
+
ENV['USER'] = 'cappy'
|
|
46
|
+
expect(subject.deployer).to eq 'cappy'
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
|
|
38
50
|
describe '#branch' do
|
|
39
51
|
it "delegates to fetch" do
|
|
40
52
|
expect(subject).to receive(:fetch).with(:branch)
|
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.8.
|
|
4
|
+
version: 3.8.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Philip Hallstrom
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-10-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|
|
@@ -122,7 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
122
122
|
version: '0'
|
|
123
123
|
requirements: []
|
|
124
124
|
rubyforge_project:
|
|
125
|
-
rubygems_version: 2.
|
|
125
|
+
rubygems_version: 2.7.6
|
|
126
126
|
signing_key:
|
|
127
127
|
specification_version: 4
|
|
128
128
|
summary: Send notifications to Slack about Capistrano deployments.
|