capistrano-slacky 0.2.2 → 1.0.0

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: 661b607b987ad599e6b2eaad1bf4688777a0ad20ef250a0a5abd8091623e9835
4
- data.tar.gz: 8f77f8f59505476d0a66ba00285f67eba980531e663b85746ca39aa1440d9610
3
+ metadata.gz: 0cdd46da39748040081b0d60e84f9a2aca031709e2bade7abe7f5acd57bcd1fc
4
+ data.tar.gz: 11993b35539786425cce2760086d5dd19878cfb23cc15878e9f017737bc5f991
5
5
  SHA512:
6
- metadata.gz: af93b201bd9fc9d6fa33f8c8ed38cface1ccc39a1db2c75aceb5dcc7e3a7cbe4931a8d37fff490dd692550a08a2f61c272f0573ded07d60e36c4c569cf46b99b
7
- data.tar.gz: 327c05c1f6c16a7a56aeb6d7f3359bedba2c5f5183631d692da158e88d62035a3081af4b08850e18c09079eca7b5d2e4cfca28e10de7c859ef035cd00412c85a
6
+ metadata.gz: b473366d720bb4b89ebe5fbd18cf2e11e0210185c2ad49bcbec82c718077028616a91963aad62e37db6d57702f01bcfa214b19cbdd4cf30270e5a8c7a672743b
7
+ data.tar.gz: 074c9cc558717e27595c0fac0c8de7f36c3125e61e911fbae820b099010a8fe07de42890e9d3f6a211175896a26fa47528b6cdf37e74784dec5a7f12299d191d
data/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.0.0] - 2024-04-11
10
+ ### Changed
11
+ - Dropped support for Ruby < 3. ([@chubchenko][])
12
+
9
13
  ## [0.2.2] - 2022-05-09
10
14
  ### Fixed
11
15
  - Add a reverse order for a `git log ...`. ([@chubchenko][])
@@ -61,7 +65,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
61
65
  - Initial version. ([@chubchenko][])
62
66
 
63
67
  [@chubchenko]: https://github.com/chubchenko
64
- [Unreleased]: https://github.com/chubchenko/capistrano-slacky/compare/v0.2.2...HEAD
68
+ [Unreleased]: https://github.com/chubchenko/capistrano-slacky/compare/v1.0.0...HEAD
69
+ [1.0.0]: https://github.com/chubchenko/capistrano-slacky/compare/v0.2.2...v1.0.0
65
70
  [0.2.2]: https://github.com/chubchenko/capistrano-slacky/compare/v0.2.1...v0.2.2
66
71
  [0.2.1]: https://github.com/chubchenko/capistrano-slacky/compare/v0.2.0...v0.2.1
67
72
  [0.2.0]: https://github.com/chubchenko/capistrano-slacky/compare/v0.1.5...v0.2.0
data/README.md CHANGED
@@ -28,7 +28,7 @@ Send `Capistrano` deployment status to `Slack` via the Incoming Webhooks integra
28
28
 
29
29
  ## Requirements
30
30
 
31
- - Ruby >= 2.5
31
+ - Ruby >= 3.0
32
32
  - Capistrano ~> 3.0
33
33
  - Slack
34
34
 
@@ -90,10 +90,10 @@ set :slacky, false
90
90
 
91
91
  This library aims to support and is [tested against][2] the following Ruby implementations:
92
92
 
93
- - Ruby 2.5
94
- - Ruby 2.6
95
- - Ruby 2.7
96
93
  - Ruby 3.0
94
+ - Ruby 3.1
95
+ - Ruby 3.2
96
+ - Ruby 3.3
97
97
 
98
98
  If something doesn't work on one of these Ruby versions, it's a bug.
99
99
 
@@ -10,7 +10,7 @@ module Capistrano
10
10
  def self.for(env:)
11
11
  klass =
12
12
  if ::Capistrano::Slacky.slacky?
13
- (::Capistrano::Slacky.klass || ::Capistrano::Slacky::Messaging::Default)
13
+ ::Capistrano::Slacky.klass || ::Capistrano::Slacky::Messaging::Default
14
14
  else
15
15
  Null
16
16
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Capistrano
4
4
  module Slacky
5
- VERSION = "0.2.2"
5
+ VERSION = "1.0.0"
6
6
  end
7
7
  end
data/lib/tasks/hooks.rake CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- after :'deploy:finishing', :'slacky:updated'
4
- after :'deploy:finishing_rollback', :'slacky:reverted'
5
- after :'deploy:failed', :'slacky:failed'
3
+ after :"deploy:finishing", :"slacky:updated"
4
+ after :"deploy:finishing_rollback", :"slacky:reverted"
5
+ after :"deploy:failed", :"slacky:failed"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-slacky
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Artem Chubchenko
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-09 00:00:00.000000000 Z
11
+ date: 2024-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano
@@ -120,7 +120,7 @@ licenses:
120
120
  - MIT
121
121
  metadata:
122
122
  bug_tracker_uri: https://github.com/chubchenko/capistrano-slacky/issues
123
- changelog_uri: https://github.com/chubchenko/capistrano-slacky/blob/master/CHANGELOG.md
123
+ changelog_uri: https://github.com/chubchenko/capistrano-slacky/blob/main/CHANGELOG.md
124
124
  homepage_uri: https://github.com/chubchenko/capistrano-slacky
125
125
  source_code_uri: https://github.com/chubchenko/capistrano-slacky
126
126
  github_repo: ssh://github.com/chubchenko/capistrano-slacky
@@ -132,14 +132,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
132
132
  requirements:
133
133
  - - ">="
134
134
  - !ruby/object:Gem::Version
135
- version: 2.5.0
135
+ version: 3.0.0
136
136
  required_rubygems_version: !ruby/object:Gem::Requirement
137
137
  requirements:
138
138
  - - ">="
139
139
  - !ruby/object:Gem::Version
140
140
  version: '0'
141
141
  requirements: []
142
- rubygems_version: 3.1.6
142
+ rubygems_version: 3.4.10
143
143
  signing_key:
144
144
  specification_version: 4
145
145
  summary: Send Capistrano deployment status to Slack