capistrano-nc 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -3
  3. data/capistrano-nc.gemspec +4 -4
  4. metadata +13 -13
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3bd39f7abc6b164289b237ffb244b75959025ba7
4
- data.tar.gz: 080bf44790411987693464c2956429a5fda0a096
3
+ metadata.gz: af5b74f51a8d20f3a57cf9ede88059150319ec1d
4
+ data.tar.gz: 38a59090382034d925d402114f24cea8a10459cc
5
5
  SHA512:
6
- metadata.gz: ac78dda7e526987342efe87d0a256f4334429f2d1f5ef675e6536fa081643f486b9f4aabd755c7113421f75e80c46da978e117f9194201610210fdb7383c5e5c
7
- data.tar.gz: 8eef3e0cb48dc1f79098f9b83cef04920369dcabb66869b055652ec6fe15a9e86aab4dabd932aee5ba5a89262cd1db85d36f85e732260bcfa78f002053de0bc6
6
+ metadata.gz: 28792c5a6901f45e83fda64c6b3c1b64b966954f0fdc326257e82e3657a9b60863538c6faed863e62b5d38690258827c6a2abc3c01dcd64b971edd56de293e82
7
+ data.tar.gz: e0e26518816dac4d49b3af62f915755ecd8aa5d0c385310d0efa7184afe1cd4475e3c777877484e5ffe170f74b4d4f0fc3eaf82553f67d51a5a122e2a69e05dd
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Capistrano + Notification Center
2
2
 
3
- capistrano-nc integrates Capistrano and Mountain Lion's Notification Center.
3
+ capistrano-nc integrates Capistrano and OS X Notification Center.
4
4
 
5
5
  ![Screenshot](http://f.cl.ly/items/1k253H0o350m1F0L371j/Screen%20Shot%202012-09-29%20at%2012.57.34%20PM.png)
6
6
 
@@ -10,7 +10,7 @@ capistrano-nc integrates Capistrano and Mountain Lion's Notification Center.
10
10
 
11
11
  ```ruby
12
12
  # Gemfile
13
- gem 'capistrano-nc', '~> 0.1.3'
13
+ gem 'capistrano-nc', '~> 0.1'
14
14
  ```
15
15
 
16
16
  ```ruby
@@ -22,7 +22,7 @@ require 'capistrano-nc/nc'
22
22
 
23
23
  ```ruby
24
24
  # Gemfile
25
- gem "capistrano-nc", "~> 0.0.2"
25
+ gem "capistrano-nc", "0.0.2"
26
26
  ```
27
27
 
28
28
  ```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.3'
4
+ gem.version = '0.1.4'
5
5
  gem.authors = ['Kir Shatrov']
6
6
  gem.email = ['shatrov@me.com']
7
7
  gem.summary = "Capistrano 3 integration with Mountain Lion's Notification Center"
8
- gem.description = 'https://github.com/evrone/capistrano-nc'
9
- gem.homepage = 'https://github.com/evrone/capistrano-nc'
8
+ gem.description = 'https://github.com/capistrano/notification-center'
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.5.1'
13
+ gem.add_dependency 'terminal-notifier', '~> 1.6'
14
14
  gem.add_dependency 'capistrano', '~> 3.0'
15
15
 
16
16
  gem.files = `git ls-files`.split($\)
metadata CHANGED
@@ -1,51 +1,51 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-nc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
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-02-18 00:00:00.000000000 Z
11
+ date: 2014-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: terminal-notifier
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.5.1
19
+ version: '1.6'
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.5.1
26
+ version: '1.6'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: capistrano
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '3.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '3.0'
41
- description: https://github.com/evrone/capistrano-nc
41
+ description: https://github.com/capistrano/notification-center
42
42
  email:
43
43
  - shatrov@me.com
44
44
  executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
- - .gitignore
48
+ - ".gitignore"
49
49
  - CHANGELOG.md
50
50
  - Gemfile
51
51
  - LICENSE
@@ -55,7 +55,7 @@ files:
55
55
  - lib/capistrano-nc.rb
56
56
  - lib/capistrano-nc/nc.rb
57
57
  - lib/capistrano-nc/tasks/nc.rake
58
- homepage: https://github.com/evrone/capistrano-nc
58
+ homepage: https://github.com/capistrano/notification-center
59
59
  licenses:
60
60
  - MIT
61
61
  metadata: {}
@@ -65,12 +65,12 @@ require_paths:
65
65
  - lib
66
66
  required_ruby_version: !ruby/object:Gem::Requirement
67
67
  requirements:
68
- - - '>='
68
+ - - ">="
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  required_rubygems_version: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - '>='
73
+ - - ">="
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0'
76
76
  requirements: []