capistrano-new-relic 0.1.0 → 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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NjhjMGU3ZGVkYzQ5MjY3YTIzZmI0ZmQ1NGJiYTBjN2VkODNmZGViYQ==
4
+ YjU5OTQ1NjRmMDE3MTZhZDU3MzYzZDRiZjU2YTY1ZTI3NTA3MWIyMw==
5
5
  data.tar.gz: !binary |-
6
- NzkyMTBmMGFkZmI2OGU5M2Y5Yjc1ZDQ4ZDllM2EyMGUwYzg2OTU2NQ==
6
+ OWQwNGE5NTVlMGFhYmI5MTkyYjg3ZjllMWE5YjMxMDBlMzEwZTA1Ng==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- YjhmNmI0MTEzODcyYjNhYzBlNDlkYTA3MjBmOWJhODc1NWRkNTcwMjM0ODI4
10
- M2M4ZDEwY2U3MmUxYmMwOTc4Mzk5ZWVmNzk1MmZhZGQ4ZTEwYjJjYTVjNjg0
11
- YmU1ZTQ4NWEzNDNkNzc4NDQ4YmY1YjNhMjhlMDU2MjZmZTE4ZWM=
9
+ MDcxMWEzMmQ1YTgxYTg4ZDdjYTBiZDA0NzZjNGZiYmIxNWE2NTM1N2RjN2Zi
10
+ ZWMyZTAzZmEzN2Q2Mjk2MzcwZWY4MGViZTg4NzJiYjM4YTU3ODYzMzUwYmE0
11
+ MGEyMGQ1MTNhMGRkY2EwOTZkNGI5NDQ4OGE4OTM1MDU0NzQ0YmM=
12
12
  data.tar.gz: !binary |-
13
- NDFmZDY3ZjNmYTI5NzJjNmY3OWRjZmRjZGRjZDMxMWQ4ZTE0MTczZTE4MzZk
14
- ZTI0NGMyZWIyZDMyMmIyZDM3NTQ0OTJkZmIxZDYwN2JlMjA1YTUwYzM2Mzk5
15
- YjIxZWI4MDFjZTUxMzYwZGY5OWY5YWE5OGRmNmZiODkxMDE3YjE=
13
+ OTM4OTkxODFiYThiYTAxZmUwOTc3YWZhN2VkODk3ODRjNTlmMTg0YTljMWY1
14
+ ZDc5NzdmZGIzNmQ2N2E2MjlhYTE4OGE0YWM2MTk3MWI4NmU4ZjgxYmM2NzEx
15
+ NDliZGEyNmYwZjg4ZDk5MDE5YWVhMDkwNGQ1ZDdmNTFjODJkN2I=
data/README.md CHANGED
@@ -1,12 +1,15 @@
1
1
  # capistrano-new-relic
2
2
 
3
- Capistrano recipe to notify New Relic of deployments.
3
+ Capistrano v2 recipe to notify New Relic of deployments.
4
+
4
5
 
5
6
  This gem is inspired by https://github.com/martinj/capistrano-jenkins.
6
7
 
7
8
  Your your name and email os fetched from git config, so make sure you have
8
9
  valid values for `user.name` and `user.email`.
9
10
 
11
+ __Note:__ Capistrano 3 is completely incompatible with Capistrano 2. If you are using Capistrano 3 you can use [cap-newrelic](https://github.com/rjocoleman/cap-newrelic) (the configuration is not directly compatible).
12
+
10
13
  ## Installation
11
14
 
12
15
  gem install capistrano-new-relic
@@ -14,6 +14,6 @@ Gem::Specification.new do |s|
14
14
  s.require_paths = ['lib']
15
15
  s.license = 'MIT'
16
16
 
17
- s.add_dependency 'capistrano'
17
+ s.add_dependency 'capistrano', '>= 2.0', '< 3.0'
18
18
  s.add_dependency 'colored'
19
19
  end
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module NewRelic
3
- VERSION = '0.1.0'
3
+ VERSION = '0.2.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-new-relic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gunnar Lium
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-16 00:00:00.000000000 Z
11
+ date: 2014-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano
@@ -16,14 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - ! '>='
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: '2.0'
20
+ - - <
21
+ - !ruby/object:Gem::Version
22
+ version: '3.0'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
27
  - - ! '>='
25
28
  - !ruby/object:Gem::Version
26
- version: '0'
29
+ version: '2.0'
30
+ - - <
31
+ - !ruby/object:Gem::Version
32
+ version: '3.0'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: colored
29
35
  requirement: !ruby/object:Gem::Requirement