capistrano-newrelic 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f671e500e6119b40f92a3c5b45716302689adff7
4
- data.tar.gz: c4b606d0ce5165b24064326d4f9a93e0022827d6
3
+ metadata.gz: 98c94aa79e3b0626e640c2d12c579f929a062577
4
+ data.tar.gz: 1e4384016533c3bdb283be9e625f07cb565e74d0
5
5
  SHA512:
6
- metadata.gz: 924deae3e2ca372a5d973ffe721c5172b623760711f0e90692806994f0f80907f3fd50cc744e60d131f4fdf4c7246968174090e1b6bd19332da0f9a768407bf4
7
- data.tar.gz: 5bb08a867a597af16b91d9227eaf46028ebeb3342089fa591a632ec5b4a96e3eb2cab44b3ebc18fd7020a0ba09268e7f69657a0bf3e23680da5467c4928faa47
6
+ metadata.gz: 038eb4d1dfb724f102fda7095afe8299a1f5d8fb68d4e9c1d4255211e1a500d91ba649bb77826b8623b9c1d55f073f18e4c8b233e9a5b63950fefc6fbde7225e
7
+ data.tar.gz: fe333049b94ad8d216ebcb6040cfc21e994b9bb3cf17182ac8ffabcf74baf9016471300a47e6f37e8bc16ebca74cfcad137e5484eae167215d1a43850daa5e78
data/README.md CHANGED
@@ -33,6 +33,12 @@ Configurable options, shown here with defaults:
33
33
  # Deploy user if set will be used instead of the VCS user.
34
34
  set :newrelic_deploy_user
35
35
 
36
+ ## Contributors
37
+
38
+ - [Bryan Ricker] (https://github.com/bricker)
39
+ - [James Kahn] (https://github.com/jisk)
40
+ - [Wojciech Wnętrzak] (https://github.com/morgoth)
41
+
36
42
  ## Contributing
37
43
 
38
44
  1. Fork it
@@ -6,8 +6,8 @@ require 'capistrano/newrelic/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'capistrano-newrelic'
8
8
  spec.version = Capistrano::NewRelic::VERSION
9
- spec.authors = ['Abdelkader Boudih', 'Jay Chung', 'James Kahn']
10
- spec.email = ['terminale@gmail.com', 'woosubc@gmail.com', 'james@liet.net']
9
+ spec.authors = ['Abdelkader Boudih']
10
+ spec.email = ['terminale@gmail.com']
11
11
  spec.description = %q{New Relic integration for Capistrano 3}
12
12
  spec.summary = %q{New Relic integration for Capistrano}
13
13
  spec.homepage = 'https://github.com/seuros/capistrano-newrelic'
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module NewRelic
3
- VERSION = '0.0.6'
3
+ VERSION = '0.0.7'
4
4
  end
5
5
  end
@@ -32,9 +32,14 @@ namespace :newrelic do
32
32
  end
33
33
 
34
34
  debug "Uploading deployment to New Relic"
35
- deployment = NewRelic::Cli::Deployments.new deploy_options
36
- deployment.run
37
- info "Uploaded deployment information to New Relic"
35
+ begin
36
+ deployment = NewRelic::Cli::Deployments.new deploy_options
37
+ deployment.run
38
+ info "Uploaded deployment information to New Relic"
39
+ rescue => e
40
+ error e
41
+ end
42
+
38
43
  end
39
44
  end
40
45
  end
metadata CHANGED
@@ -1,12 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-newrelic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abdelkader Boudih
8
- - Jay Chung
9
- - James Kahn
10
8
  autorequire:
11
9
  bindir: bin
12
10
  cert_chain: []
@@ -43,8 +41,6 @@ dependencies:
43
41
  description: New Relic integration for Capistrano 3
44
42
  email:
45
43
  - terminale@gmail.com
46
- - woosubc@gmail.com
47
- - james@liet.net
48
44
  executables: []
49
45
  extensions: []
50
46
  extra_rdoc_files: []