capistrano-newrelic 0.0.9 → 0.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CONTRIBUTORS.md +5 -0
- data/LICENSE.txt +2 -1
- data/README.md +3 -7
- data/lib/capistrano/newrelic/version.rb +1 -1
- data/lib/capistrano/tasks/newrelic.rake +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a8c6cd78406e2f054538c774d7a9129fcf0a9d8c
|
4
|
+
data.tar.gz: 3a41d3a311bd3bfecf40f3834669cec56b886f32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cefdb8e9be08cf5de1d71a96ec81ac84b4de456e4809530ba81764f1b6bc8b1eb24f940808b716958f0e8096673d1126278ebd7b91528890f748c43ffb436815
|
7
|
+
data.tar.gz: a279b64acfa6382139c4a10e78a534ea98e20d052cab43261649879cc1f502b56df97ecabd58ec58ad8c6678051f2aaab1405d01931f3aca2cb29fb27bf1305b
|
data/CONTRIBUTORS.md
ADDED
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -52,6 +52,9 @@ Configurable options, shown here with defaults:
|
|
52
52
|
|
53
53
|
## Changelog
|
54
54
|
|
55
|
+
0.0.10:
|
56
|
+
* Use git --no-pager option when printing the log
|
57
|
+
|
55
58
|
0.0.9:
|
56
59
|
* Added changelog capture for git
|
57
60
|
* Populate revision with `current_revision` from scm if available;
|
@@ -72,13 +75,6 @@ Configurable options, shown here with defaults:
|
|
72
75
|
$ NEWRELIC_REVISION='Your text here' bundle exe cap ....
|
73
76
|
```
|
74
77
|
|
75
|
-
## Contributors
|
76
|
-
|
77
|
-
- [Bryan Ricker] (https://github.com/bricker)
|
78
|
-
- [James Kahn] (https://github.com/jisk)
|
79
|
-
- [Wojciech Wnętrzak] (https://github.com/morgoth)
|
80
|
-
- [Bill Kayser (New Relic)] (https://github.com/bkayser)
|
81
|
-
|
82
78
|
## Contributing
|
83
79
|
|
84
80
|
1. Fork it
|
@@ -9,7 +9,7 @@ namespace :newrelic do
|
|
9
9
|
if changelog.nil? && fetch(:scm) == :git
|
10
10
|
on primary(:app) do
|
11
11
|
within repo_path do
|
12
|
-
changelog = capture(:git, "log --no-color --pretty=format:'* %an: %s' --abbrev-commit --no-merges #{fetch(:previous_revision)[/^.*$/]}..#{fetch(:current_revision)}")
|
12
|
+
changelog = capture(:git, "--no-pager log --no-color --pretty=format:'* %an: %s' --abbrev-commit --no-merges #{fetch(:previous_revision)[/^.*$/]}..#{fetch(:current_revision)}")
|
13
13
|
end
|
14
14
|
end
|
15
15
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-newrelic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Abdelkader Boudih
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-06-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capistrano
|
@@ -46,6 +46,7 @@ extensions: []
|
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
48
|
- ".gitignore"
|
49
|
+
- CONTRIBUTORS.md
|
49
50
|
- Gemfile
|
50
51
|
- LICENSE.txt
|
51
52
|
- README.md
|
@@ -75,9 +76,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
76
|
version: '0'
|
76
77
|
requirements: []
|
77
78
|
rubyforge_project:
|
78
|
-
rubygems_version: 2.4
|
79
|
+
rubygems_version: 2.6.4
|
79
80
|
signing_key:
|
80
81
|
specification_version: 4
|
81
82
|
summary: New Relic integration for Capistrano
|
82
83
|
test_files: []
|
83
|
-
has_rdoc:
|