capistrano-nc 0.1.4 → 0.2.0

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
- SHA1:
3
- metadata.gz: af5b74f51a8d20f3a57cf9ede88059150319ec1d
4
- data.tar.gz: 38a59090382034d925d402114f24cea8a10459cc
2
+ SHA256:
3
+ metadata.gz: c06b38bebfc530d9b8e2b8c4b086f5d8d6af6b32e0b12d0e1b20f0cccf1212ff
4
+ data.tar.gz: b3115318ba8ad3e21d322cab4ba472ec0b7b3f2c3e577c9a821e5e2a97f8ee31
5
5
  SHA512:
6
- metadata.gz: 28792c5a6901f45e83fda64c6b3c1b64b966954f0fdc326257e82e3657a9b60863538c6faed863e62b5d38690258827c6a2abc3c01dcd64b971edd56de293e82
7
- data.tar.gz: e0e26518816dac4d49b3af62f915755ecd8aa5d0c385310d0efa7184afe1cd4475e3c777877484e5ffe170f74b4d4f0fc3eaf82553f67d51a5a122e2a69e05dd
6
+ metadata.gz: c631ab387d6092e1adb45a239bf94a92526532c0881ad6c5fe01ebbb26b9b086e017caeb5420ab9bedbe863f01cc0b3b278e25052c2cf778c89d254e1b30f4a1
7
+ data.tar.gz: 1d38e7d64d635efbd3eb49fc4cd555e7341f392979db6907989779be5c771538bd262f4dd4f1fc44fc461d4cd015edb361961d536b41b0116990134a934fbd29
data/CHANGELOG.md CHANGED
@@ -1,9 +1,31 @@
1
+ ## master
2
+
3
+ https://github.com/capistrano/notification-center/compare/v0.2.0...HEAD
4
+
5
+ * Your contribution here!
6
+
7
+ ## 0.2.0 (2018-02-25)
8
+
9
+ https://github.com/capistrano/notification-center/compare/v0.1.4...v0.2.0
10
+
11
+ * [#9](https://github.com/capistrano/notification-center/pull/9): Update terminal-notifier dependency to ~> 2.0. This fixes a bug where capistrano-nc would hang forever waiting for the notification to dismiss.
12
+
13
+ ## 0.1.4
14
+
15
+ https://github.com/capistrano/notification-center/compare/v0.1.3...v0.1.4
16
+
17
+ * [#6](https://github.com/capistrano/notification-center/pull/6): Update terminal-notifier dependency (adds Yosemite compatibility) - [@rjocoleman](https://github.com/rjocoleman)
18
+
1
19
  ## 0.1.3
2
20
 
21
+ https://github.com/capistrano/notification-center/compare/v0.1.2...v0.1.3
22
+
3
23
  * Added support for "activate" and "sender" terminal-notifier options (#5)
4
24
 
5
25
  ## 0.1.2
6
26
 
27
+ https://github.com/capistrano/notification-center/compare/v0.1.1...v0.1.2
28
+
7
29
  * Fixed dependency on Capistrano core
8
30
  * Updated terminal-notifier dependency
9
31
 
data/README.md CHANGED
@@ -10,7 +10,7 @@ capistrano-nc integrates Capistrano and OS X Notification Center.
10
10
 
11
11
  ```ruby
12
12
  # Gemfile
13
- gem 'capistrano-nc', '~> 0.1'
13
+ gem 'capistrano-nc', '~> 0.2'
14
14
  ```
15
15
 
16
16
  ```ruby
@@ -1,16 +1,16 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  Gem::Specification.new do |gem|
3
3
  gem.name = 'capistrano-nc'
4
- gem.version = '0.1.4'
4
+ gem.version = '0.2.0'
5
5
  gem.authors = ['Kir Shatrov']
6
6
  gem.email = ['shatrov@me.com']
7
- gem.summary = "Capistrano 3 integration with Mountain Lion's Notification Center"
7
+ gem.summary = "Capistrano 3 integration with the macOS Notification Center"
8
8
  gem.description = 'https://github.com/capistrano/notification-center'
9
9
  gem.homepage = 'https://github.com/capistrano/notification-center'
10
10
 
11
11
  gem.licenses = %w(MIT)
12
12
 
13
- gem.add_dependency 'terminal-notifier', '~> 1.6'
13
+ gem.add_dependency 'terminal-notifier', '~> 2.0'
14
14
  gem.add_dependency 'capistrano', '~> 3.0'
15
15
 
16
16
  gem.files = `git ls-files`.split($\)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-nc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kir Shatrov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-15 00:00:00.000000000 Z
11
+ date: 2018-02-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: terminal-notifier
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.6'
19
+ version: '2.0'
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: '1.6'
26
+ version: '2.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: capistrano
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -75,9 +75,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  version: '0'
76
76
  requirements: []
77
77
  rubyforge_project:
78
- rubygems_version: 2.2.1
78
+ rubygems_version: 2.7.6
79
79
  signing_key:
80
80
  specification_version: 4
81
- summary: Capistrano 3 integration with Mountain Lion's Notification Center
81
+ summary: Capistrano 3 integration with the macOS Notification Center
82
82
  test_files: []
83
- has_rdoc: