mina-rollbar 0.1.2 → 0.1.3

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: d91a581cfac742aa9b32e3dc33e600ef9f44aa39
4
- data.tar.gz: 0d00a347d2b280e54bde1b54a92292aee4f383dc
3
+ metadata.gz: a65699e16483658bbf1735b6b412d82f5a404115
4
+ data.tar.gz: 14c12ebb96d313e359ad2b0ded73b6fb728a309c
5
5
  SHA512:
6
- metadata.gz: 40586a8b7aee4b773cc6c2087a995d0b0df0ffe54b43036b814d019dd0fcd9ee278c0fc3c20742f8788ed81764011f3a3a816c6e03c7e4b64cf61e16ff25b477
7
- data.tar.gz: 1a67c5bec8fe36682cd4cc38e039ace5dee09c631788497badfcbdd6f77ff033b53154b2280ea8ad876c12d616161b4f0113cc8ad9977b25ae4004c2d5dc52d4
6
+ metadata.gz: ea3bb7ecb82040ea03af25f5e38c5019603becf547288152a0342bfe134fd1c8eca2fb896871ad659a4fa80220169d821a79177af2f6fe9606803182b381e82d
7
+ data.tar.gz: f5adf7f95117fadf9ae8a4741a635aeba80b25a676f8f41f02885149859881e7acfd244d517dc62c760a4345ae5a3daedf15a61d5d0a49b5f3ee40dd4e2b86da
@@ -1 +1 @@
1
- 2.1.2
1
+ 2.2.0
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Mina::Rollbar [![Build Status](https://travis-ci.org/code-lever/mina-rollbar.png)](https://travis-ci.org/code-lever/mina-rollbar) [![Dependency Status](https://gemnasium.com/code-lever/mina-rollbar.png)](https://gemnasium.com/code-lever/mina-rollbar) [![Code Climate](https://codeclimate.com/github/code-lever/mina-rollbar.png)](https://codeclimate.com/github/code-lever/mina-rollbar)
2
2
 
3
- [Mina](https://github.com/mina-deploy/mina) tasks for interacting with [Rollbar.io](http://rollbar.io).
3
+ [Mina](https://github.com/mina-deploy/mina) tasks for interacting with [Rollbar](http://rollbar.com).
4
4
 
5
5
  Adds the following tasks:
6
6
 
@@ -25,6 +25,7 @@ And then execute:
25
25
  require 'mina/rollbar'
26
26
 
27
27
  ...
28
+ # replace value w/your real access token
28
29
  set :rollbar_access_token, '9a18d718214b4348822b7cec493f86d2'
29
30
 
30
31
  task deploy: :environment do
@@ -42,8 +43,8 @@ And then execute:
42
43
 
43
44
  | Name | Description |
44
45
  | ---------------------------- | -------------------------------------------------- |
45
- | `rollbar_access_token` | Rollbar.io access token (post_server_item token) |
46
- | `rollbar_username` | Rollbar.io username of deploying user (optional) |
46
+ | `rollbar_access_token` | Rollbar access token (post_server_item token) |
47
+ | `rollbar_username` | Rollbar username of deploying user (optional) |
47
48
  | `rollbar_local_username` | Local username of deploying user (optional) |
48
49
  | `rollbar_comment` | Comment for this deployment (optional) |
49
50
  | `rollbar_notification_debug` | `true` to enable notification debugging info |
@@ -30,7 +30,7 @@ require 'mina/rails'
30
30
  set_default :rollbar_access_token, nil
31
31
 
32
32
  # ### rollbar_username
33
- # Sets the Rollbar.io username of the user who deployed. Optional.
33
+ # Sets the Rollbar username of the user who deployed. Optional.
34
34
  set_default :rollbar_username, nil
35
35
 
36
36
  # ### rollbar_local_username
@@ -47,7 +47,7 @@ set_default :rollbar_notification_debug, false
47
47
 
48
48
  namespace :rollbar do
49
49
 
50
- desc 'Notifies Rollbar.io of your deployment'
50
+ desc 'Notifies Rollbar of your deployment'
51
51
  task notify: :environment do
52
52
 
53
53
  unless rollbar_access_token
@@ -71,7 +71,7 @@ namespace :rollbar do
71
71
  script << "-F rollbar_username=#{rollbar_username}" if rollbar_username
72
72
  script << "-F comment=#{rollbar_comment}" if rollbar_comment
73
73
 
74
- queue! 'echo "-----> Notifying Rollbar.io of deployment"'
74
+ queue! 'echo "-----> Notifying Rollbar of deployment"'
75
75
  queue! %[#{script.join(' ')}]
76
76
 
77
77
  end
@@ -1,5 +1,5 @@
1
1
  module Mina
2
2
  module Rollbar
3
- VERSION = '0.1.2'
3
+ VERSION = '0.1.3'
4
4
  end
5
5
  end
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Mina::Rollbar::VERSION
9
9
  spec.authors = ['Nick Veys']
10
10
  spec.email = ['nick@codelever.com']
11
- spec.summary = %q{Mina tasks for Rollbar.io}
12
- spec.description = %q{Notify Rollbar.io of Mina deployments.}
11
+ spec.summary = %q{Mina tasks for Rollbar}
12
+ spec.description = %q{Notify Rollbar of Mina deployments.}
13
13
  spec.homepage = 'https://github.com/code-lever/mina-rollbar'
14
14
  spec.license = 'MIT'
15
15
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mina-rollbar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Veys
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-22 00:00:00.000000000 Z
11
+ date: 2015-01-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mina
@@ -192,7 +192,7 @@ dependencies:
192
192
  - - ">="
193
193
  - !ruby/object:Gem::Version
194
194
  version: '0'
195
- description: Notify Rollbar.io of Mina deployments.
195
+ description: Notify Rollbar of Mina deployments.
196
196
  email:
197
197
  - nick@codelever.com
198
198
  executables: []
@@ -231,9 +231,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
231
231
  version: '0'
232
232
  requirements: []
233
233
  rubyforge_project:
234
- rubygems_version: 2.2.2
234
+ rubygems_version: 2.4.5
235
235
  signing_key:
236
236
  specification_version: 4
237
- summary: Mina tasks for Rollbar.io
237
+ summary: Mina tasks for Rollbar
238
238
  test_files: []
239
239
  has_rdoc: