bugsnag-capistrano 1.0.0 → 1.0.1

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,7 +1,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: e6326e309ec379b3386a4dfa4d7b8601dbfe9e12
4
- data.tar.gz: 7514f4a2c7af3e3f5302395c143a1295ca94366d
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ NDg1ZGZiMDhkYTNiOWZiYmZiMWZmOGRiZDU1NzNkMjc1YTIzNThkYg==
5
+ data.tar.gz: !binary |-
6
+ ZGFkNTMxYTEwYjBiYmUxNDhkMTc2Y2YyNGIwYWI0NWFmNzhmYWI2Zg==
5
7
  SHA512:
6
- metadata.gz: 4c82887b35306b8fdb478736ecee705b29786318a7a228d5aba24526aac4cf7dd2475a201565625d49e4827df12ce65a95839a52d292245d90e4960ea45b460c
7
- data.tar.gz: b8aa67705bfa30e71170444a8dfbed54db1203b06eaf4c18f57be03ea37cc2989a2a57da49d79dfd57d37b9be0fd47567b1f3d2e3b1457ebfe37761ef1d75f01
8
+ metadata.gz: !binary |-
9
+ MDk4NWQzMDE3NTRlZWUyNzcxNTdmZWY2YThiZWU0MjYzODVhM2Y5NGQ4YmVk
10
+ ZWIzNWU1YjY0ZGM0MTgwMTgwMTA2ZTBhMWNmZDc2YmU2ZmRjNzBlZDk5N2Fh
11
+ M2RlODI4YzY2YmY5YWIyOTg1NjE3MTZiZjU4OTlmNzVkNGQ4MmY=
12
+ data.tar.gz: !binary |-
13
+ Y2Q1NmYxZTNlM2Q3MzFiZWQwYmFmNWNjMzE3YTM0NjczOTk0MDFiOGQ0ZTdm
14
+ NTZiMjI2NjkwYzJhOTdiMTAyZTE1MTkwMWIxMWQxYzRjMDVhYmU2MzAwOWQ4
15
+ NTI5YzVlOTc2ZmVlOGRhM2Y2NmI2YTRkYzhmZGQwM2QwNzFiZGE=
data/.travis.yml CHANGED
@@ -1,36 +1,77 @@
1
1
  sudo: false
2
2
  language: ruby
3
3
  cache: bundler
4
- rvm:
5
- - 2.3.0
6
- - 2.2.4
7
- - 2.1.8
8
- - 2.0.0
9
- - 1.9.3
10
- - jruby-19mode
11
-
12
4
  before_install:
13
- - gem update --system 2.1.11
14
- - gem install bundler -v 1.12
15
- - bundle --version
5
+ - gem update --system 2.6.11
6
+ - gem install bundler -v 1.12.0
16
7
  - gem --version
17
8
 
18
9
  before_script:
19
10
  - bundle list | grep 'bugsnag\|capistrano'
20
- - bundle exec cap --version
21
11
  script: bundle exec rake spec
22
12
 
23
13
  jobs:
24
14
  include:
15
+ # JRuby 1.9
16
+ - stage: test
17
+ env: CAP_2_TEST=true
18
+ install: bundle _1.12.0_ install --with test bugsnag
19
+ rvm: jruby-19mode
25
20
  - stage: test
26
21
  env: CAP_2_TEST=true
27
- install: bundle install --with test bugsnag
22
+ install: bundle _1.12.0_ install --with test --without bugsnag
23
+ rvm: jruby-19mode
24
+ - stage: test
25
+ install: bundle _1.12.0_ install --with test bugsnag
26
+ rvm: jruby-19mode
27
+ - stage: test
28
+ install: bundle _1.12.0_ install --with test --without bugsnag
29
+ rvm: jruby-19mode
30
+
31
+ # Ruby 2.0.0
28
32
  - stage: test
29
33
  env: CAP_2_TEST=true
30
- install: bundle install --with test --without bugsnag
34
+ install: bundle install --with test bugsnag --binstubs
35
+ rvm: 2.0.0
36
+ - stage: test
37
+ env: CAP_2_TEST=true
38
+ install: bundle install --with test --without bugsnag --binstubs
39
+ rvm: 2.0.0
40
+ - stage: test
41
+ install: bundle install --with test bugsnag --binstubs
42
+ rvm: 2.0.0
43
+ - stage: test
44
+ install: bundle install --with test --without bugsnag --binstubs
45
+ rvm: 2.0.0
46
+
47
+ # Ruby 2.1.10
48
+ - stage: test
49
+ env: CAP_2_TEST=true
50
+ install: bundle install --with test bugsnag --binstubs
51
+ rvm: 2.1.10
52
+ - stage: test
53
+ env: CAP_2_TEST=true
54
+ install: bundle install --with test --without bugsnag --binstubs
55
+ rvm: 2.1.10
56
+ - stage: test
57
+ install: bundle install --with test bugsnag --binstubs
58
+ rvm: 2.1.10
59
+ - stage: test
60
+ install: bundle install --with test --without bugsnag --binstubs
61
+ rvm: 2.1.10
62
+
63
+ # Ruby 2.3.0
64
+ - stage: test
65
+ install: bundle install --with test bugsnag --binstubs
66
+ rvm: 2.3.0
67
+ - stage: test
68
+ install: bundle install --with test --without bugsnag --binstubs
69
+ rvm: 2.3.0
70
+
71
+ # Ruby 2.4.2
31
72
  - stage: test
32
- env: CAP_2_TEST=false
33
- install: bundle install --with test bugsnag
73
+ install: bundle install --with test bugsnag --binstubs
74
+ rvm: 2.4.2
34
75
  - stage: test
35
- env: CAP_2_TEST=false
36
- install: bundle install --with test --without bugsnag
76
+ install: bundle install --with test --without bugsnag --binstubs
77
+ rvm: 2.4.2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 1.0.1 (09-11-2017)
2
+
3
+ ### Bug fixes
4
+
5
+ * Add missing Rake task helper
6
+
1
7
  ## 1.0.0 (09-11-2017)
2
8
 
3
9
  Initial release of bugsnag-capistrano
data/CONTRIBUTING.md CHANGED
@@ -29,7 +29,7 @@ Instructions on running the example apps can be found within the `README.md` fil
29
29
  ## Submitting a Change
30
30
 
31
31
  * [Fork](https://help.github.com/articles/fork-a-repo) the
32
- [notifier on github](https://github.com/bugsnag/bugsnag-bugsnag-capistrano)
32
+ [notifier on github](https://github.com/bugsnag/bugsnag-capistrano)
33
33
  * Commit and push until you are happy with your contribution
34
34
  * Run the tests with and ensure all pass
35
35
  * [Submit a pull request](https://help.github.com/articles/using-pull-requests)
@@ -66,5 +66,5 @@ bugsnag-capistrano.
66
66
  ```
67
67
  bundle exec rake release
68
68
  ```
69
-
69
+
70
70
  * Update docs.bugsnag.com with any new content
data/Gemfile CHANGED
@@ -7,7 +7,7 @@ group :test, optional: true do
7
7
  gem 'pry'
8
8
  gem 'addressable', '~>2.3.8'
9
9
  gem 'webmock', RUBY_VERSION <= '1.9.3' ? '2.3.2': '>2.3.2'
10
- gem 'capistrano', ENV['CAP_2_TEST'] == 'true' ? '~> 2.15': '~> 3.9'
10
+ gem 'capistrano', ENV['CAP_2_TEST'] == 'true' ? '~> 2.15.0': '~> 3.9.0'
11
11
  end
12
12
 
13
13
  group :bugsnag, optional: true do
data/README.md CHANGED
@@ -1,6 +1,5 @@
1
1
  # Bugsnag deploy tracking with Capistrano
2
- [![Build status](https://travis-ci.org/bugsnag/bugsnag-bugsnag-capistrano.svg?branch=master)](https://travis-ci.org/bugsnag/bugsnag-bugsnag-capistrano)
3
-
2
+ [![Build status](https://travis-ci.org/bugsnag/bugsnag-capistrano.svg?branch=master)](https://travis-ci.org/bugsnag/bugsnag-capistrano)
4
3
 
5
4
  Bugsnag Capistrano automatically notifies Bugsnag when you deploy your
6
5
  application with [Capistrano](https://github.com/capistrano/capistrano),
@@ -12,37 +11,15 @@ mobile and desktop applications, helping you to understand and resolve them
12
11
  as fast as possible. [Create a free account](http://bugsnag.com) to start
13
12
  capturing exceptions from your applications.
14
13
 
15
- ## Features
16
-
17
- * Automatically report unhandled exceptions and crashes
18
- * Report handled exceptions
19
- * Log breadcrumbs which are attached to crash reports and add insight to users' actions
20
- * Attach user information and custom diagnostic data to determine how many people are affected by a crash
21
-
22
- ## Getting started
23
-
24
- 1. [Create a Bugsnag account](https://bugsnag.com)
25
- 1. Complete the instructions in the [ruby integration guide](https://docs.bugsnag.com/platforms/ruby/) for your ruby application type
26
- 1. Complete the instructions in the integration guide for [deploy tracking](https://docs.bugsnag.com/platforms/ruby/deploy-tracking/)
27
- 1. Report handled exceptions using [`Bugsnag.notify()`](http://docs.bugsnag.com/platforms/bugsnag-capistrano/reporting-handled-exceptions/)
28
- 1. Customize your integration using the [configuration options](http://docs.bugsnag.com/platforms/bugsnag-capistrano/configuration-options/)
29
-
30
- ## Support
31
-
32
- * Read the [bugsnag-capistrano](http://docs.bugsnag.com/platforms/bugsnag-capistrano/configuration-options) configuration reference
33
- * Read the instructions in the integration guide for [deploy tracking](https://docs.bugsnag.com/platforms/ruby/deploy-tracking/)
34
- * [Search open and closed issues](https://github.com/bugsnag/bugsnag-bugsnag-capistrano/issues?utf8=✓&q=is%3Aissue) for similar problems
35
- * [Report a bug or request a feature](https://github.com/bugsnag/bugsnag-bugsnag-capistrano/issues/new)
36
-
37
14
  ## Contributing
38
15
 
39
16
  All contributors are welcome! For information on how to build, test,
40
- and release `bugsnag-bugsnag-capistrano`, see our
41
- [contributing guide](https://github.com/bugsnag/bugsnag-bugsnag-capistrano/blob/master/CONTRIBUTING.md).
17
+ and release `bugsnag-capistrano`, see our
18
+ [contributing guide](https://github.com/bugsnag/bugsnag-capistrano/blob/master/CONTRIBUTING.md).
42
19
 
43
20
 
44
21
  ## License
45
22
 
46
23
  The Bugsnag Cocoa library is free software released under the MIT License.
47
- See [LICENSE.txt](https://github.com/bugsnag/bugsnag-bugsnag-capistrano/blob/master/LICENSE.txt)
24
+ See [LICENSE.txt](https://github.com/bugsnag/bugsnag-capistrano/blob/master/LICENSE.txt)
48
25
  for details.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.1
@@ -0,0 +1,2 @@
1
+ require_relative 'deploy'
2
+ load File.join(File.dirname(File.expand_path(__FILE__)), 'tasks/bugsnag-capistrano.rake')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bugsnag-capistrano
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Keegan Lowenstein
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2017-11-09 00:00:00.000000000 Z
14
+ date: 2017-11-10 00:00:00.000000000 Z
15
15
  dependencies: []
16
16
  description: Correlate Capistrano deploys with new errors and increased error rates
17
17
  in Bugsnag
@@ -23,8 +23,8 @@ extra_rdoc_files:
23
23
  - README.md
24
24
  - CHANGELOG.md
25
25
  files:
26
- - ".gitignore"
27
- - ".travis.yml"
26
+ - .gitignore
27
+ - .travis.yml
28
28
  - CHANGELOG.md
29
29
  - CONTRIBUTING.md
30
30
  - Gemfile
@@ -37,6 +37,7 @@ files:
37
37
  - lib/bugsnag-capistrano/capistrano.rb
38
38
  - lib/bugsnag-capistrano/capistrano2.rb
39
39
  - lib/bugsnag-capistrano/deploy.rb
40
+ - lib/bugsnag-capistrano/tasks.rb
40
41
  - lib/bugsnag-capistrano/tasks/bugsnag-capistrano.rake
41
42
  - lib/bugsnag-capistrano/tasks/bugsnag.cap
42
43
  - spec/capistrano_spec.rb
@@ -51,17 +52,17 @@ require_paths:
51
52
  - lib
52
53
  required_ruby_version: !ruby/object:Gem::Requirement
53
54
  requirements:
54
- - - ">="
55
+ - - ! '>='
55
56
  - !ruby/object:Gem::Version
56
57
  version: 1.9.2
57
58
  required_rubygems_version: !ruby/object:Gem::Requirement
58
59
  requirements:
59
- - - ">="
60
+ - - ! '>='
60
61
  - !ruby/object:Gem::Version
61
62
  version: '0'
62
63
  requirements: []
63
64
  rubyforge_project:
64
- rubygems_version: 2.4.5
65
+ rubygems_version: 2.6.12
65
66
  signing_key:
66
67
  specification_version: 4
67
68
  summary: Notify Bugsnag when deploying with Capistrano