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 +8 -8
- data/README.md +4 -1
- data/capistrano-new-relic.gemspec +1 -1
- data/lib/capistrano-new-relic/version.rb +1 -1
- metadata +10 -4
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YjU5OTQ1NjRmMDE3MTZhZDU3MzYzZDRiZjU2YTY1ZTI3NTA3MWIyMw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
OWQwNGE5NTVlMGFhYmI5MTkyYjg3ZjllMWE5YjMxMDBlMzEwZTA1Ng==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MDcxMWEzMmQ1YTgxYTg4ZDdjYTBiZDA0NzZjNGZiYmIxNWE2NTM1N2RjN2Zi
|
|
10
|
+
ZWMyZTAzZmEzN2Q2Mjk2MzcwZWY4MGViZTg4NzJiYjM4YTU3ODYzMzUwYmE0
|
|
11
|
+
MGEyMGQ1MTNhMGRkY2EwOTZkNGI5NDQ4OGE4OTM1MDU0NzQ0YmM=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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
|
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.
|
|
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-
|
|
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
|