capistrano-nc 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- MTk3OGFhMzgzOTk0YWI1MmQ0OTk5MTk3Mjc5M2VjYzBmZTBhYjRhOA==
5
- data.tar.gz: !binary |-
6
- YzBkNTdmZDNiYTQzZjg2NDIzZDBmNTcxODljMDEyYzc4YjdhMmY0ZA==
2
+ SHA1:
3
+ metadata.gz: f403ddda090990df298a46f5f5a1f656d035d0f3
4
+ data.tar.gz: 820d512539914768769753ae0b04aa11627af317
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- ODk5MTgxZWQ0YTVlNmQ1ZmMzYTJlMDQxNzdjNmVjNzQ0M2JmMTU5ZWMyMGM1
10
- N2YzMWJkZjA1MmRhMDRmZGNlZDBjYzcwYWEzMGQ3ZjY2YmM1MTE2ZDc5OWYx
11
- ODczMTRkNTJjY2YyNTA3YzkyY2M0Mjc4ZDM5NGZiMzM3OWJkOWE=
12
- data.tar.gz: !binary |-
13
- MTA3YjBhNzI1MTk5YTM3MTlmMDA0YzQ5YTdlOWEwYTcyZmUxZWExN2RjYzVh
14
- NWU0NTA4Nzc0YzkzYTYwYTBhMjIxZDhmYjAxMjU1NWVhMWZhMTdlM2MxZjQz
15
- MGIwODQ0ODk5NmIzYTQ0MzY5YjllYTIwZjdlZDgyYzg2NThkNmU=
6
+ metadata.gz: 7ab790369a89becd165778554405995bd5699e222d5ee30755216c30bb5852202a25a10aebc3b21003daf1acdb5f91c0cefeee5a6f57d081a88d97a2d3db87dc
7
+ data.tar.gz: 64e961b733c87366c02b167cfadea4bb9b366b028e899b36ca273b8b6c553d7ee4f32cc2e3ce29884122dbfc36b5df914428f874dfbc2f2762d58ae49bb68b63
data/CHANGELOG.md CHANGED
@@ -1,7 +1,11 @@
1
+ ## 0.1.1
2
+
3
+ Fixed bug with `Don't know how to build task 'nc:finished'` in Capistrano 3
4
+
1
5
  ## 0.1.0
2
6
 
3
7
  Support for Capistrano 3.
4
8
 
5
9
  ## 0.0.2
6
10
 
7
- Initial release for Capistrano 2.
11
+ Initial release for Capistrano 2.
data/README.md CHANGED
@@ -1,14 +1,12 @@
1
- Capistrano + Notification Center
2
- =========================
1
+ # Capistrano + Notification Center
3
2
 
4
3
  capistrano-nc integrates Capistrano and Mountain Lion's Notification Center.
5
4
 
6
5
  ![Screenshot](http://f.cl.ly/items/1k253H0o350m1F0L371j/Screen%20Shot%202012-09-29%20at%2012.57.34%20PM.png)
7
6
 
8
- Installation
9
- ------------
7
+ ## Installation
10
8
 
11
- For Capistrano 3.x:
9
+ ### for Capistrano 3.x
12
10
 
13
11
  ```ruby
14
12
  # Gemfile
@@ -20,7 +18,7 @@ gem 'capistrano-nc', '~> 0.1.0'
20
18
  require 'capistrano-nc/nc'
21
19
  ```
22
20
 
23
- For Capistrano 2.x:
21
+ ### for Capistrano 2.x
24
22
 
25
23
  ```ruby
26
24
  # Gemfile
@@ -38,8 +36,8 @@ By default it will run the `nc:finished` task after your `deploy` or `deploy:mig
38
36
  after `your:task`, `nc:finished`
39
37
  ```
40
38
 
41
- ##Contributors
39
+ ## Contributors
42
40
 
43
41
  - [Kir Shatrov](https://github.com/kirs/)
44
42
 
45
- ##Feel free to pull request!
43
+ ## Feel free to pull request!
@@ -1,7 +1,7 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  Gem::Specification.new do |gem|
3
3
  gem.name = 'capistrano-nc'
4
- gem.version = '0.1.0'
4
+ gem.version = '0.1.1'
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"
@@ -11,6 +11,7 @@ Gem::Specification.new do |gem|
11
11
  gem.licenses = %w(MIT)
12
12
 
13
13
  gem.add_dependency 'terminal-notifier', '~> 1.4.2'
14
+ gem.add_dependency 'capistrano', '~> 3.1'
14
15
 
15
16
  gem.files = `git ls-files`.split($\)
16
17
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
@@ -10,10 +10,6 @@ module CapistranoNc
10
10
  end
11
11
  end
12
12
 
13
- namespace :deploy do
14
- after :finished, 'nc:finished'
15
- end
16
-
17
13
  namespace :nc do
18
14
  task :finished do
19
15
  if CapistranoNc.nc_supported?
@@ -30,3 +26,5 @@ namespace :nc do
30
26
  end
31
27
  end
32
28
  end
29
+
30
+ after 'deploy:finished', 'nc:finished'
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.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kir Shatrov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-21 00:00:00.000000000 Z
11
+ date: 2013-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: terminal-notifier
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - ~>
25
25
  - !ruby/object:Gem::Version
26
26
  version: 1.4.2
27
+ - !ruby/object:Gem::Dependency
28
+ name: capistrano
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '3.1'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '3.1'
27
41
  description: https://github.com/evrone/capistrano-nc
28
42
  email:
29
43
  - shatrov@me.com
@@ -51,17 +65,17 @@ require_paths:
51
65
  - lib
52
66
  required_ruby_version: !ruby/object:Gem::Requirement
53
67
  requirements:
54
- - - ! '>='
68
+ - - '>='
55
69
  - !ruby/object:Gem::Version
56
70
  version: '0'
57
71
  required_rubygems_version: !ruby/object:Gem::Requirement
58
72
  requirements:
59
- - - ! '>='
73
+ - - '>='
60
74
  - !ruby/object:Gem::Version
61
75
  version: '0'
62
76
  requirements: []
63
77
  rubyforge_project:
64
- rubygems_version: 2.1.9
78
+ rubygems_version: 2.0.3
65
79
  signing_key:
66
80
  specification_version: 4
67
81
  summary: Capistrano 3 integration with Mountain Lion's Notification Center