raygun4ruby 2.7.0 → 2.7.1

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: 1975c19107e042426b56c91ca986207e3e17d681
4
- data.tar.gz: 491657544cbb5537c01fc4483dd45a8282add25c
3
+ metadata.gz: d6ec0020abc8721120597f8c22ab79c7a1167d0f
4
+ data.tar.gz: 52cb79e2a9759b812fe3f1b4b9210c151ce930da
5
5
  SHA512:
6
- metadata.gz: 79eb83863ba93f963857e2a43af01e9daff5e13cd788a218db867a5a622e51a8ab119b16f546534f7f12b680c9e086fa0d524502306d04b17c95461a56046ab0
7
- data.tar.gz: 2a4fc829d54fe4deb855283719f7432360854760cf1d78f06235f82304587d00ed2607e42ff7b6cafe9def75e3b0585d81aa0930a403de5861e5e35f881fe967
6
+ metadata.gz: 9d7f73f586ae735d6c9dfc1b0bdaf17edfecef52c03b444aac7b9dec753b4b0388a997d7a58a09c2d27463e55871a59d170cd78c4467f33ee04a7712d400360a
7
+ data.tar.gz: 5049a108a762044416fc4bf382791b8d3cb356c609ec1f0444c173ca7401bf3f334b19cf65b3943f6292ccaf888fb887b1f14cd161303b25ca38925eb61a55c1
@@ -1,3 +1,6 @@
1
+ ## 2.7.1 (11/06/2018)
2
+ This is a patch release to update the required ruby version to correctly be 2.0 or greater
3
+
1
4
  ## 2.7.0 (19/02/2018)
2
5
 
3
6
  Features
@@ -52,6 +55,8 @@ Bugfixes:
52
55
  - Fix broken handling of raw request body reading in Rack applications ([#116](https://github.com/MindscapeHQ/raygun4ruby/pull/116))
53
56
  - This is a breaking change to how raw data was being read before so it requires a major version bump
54
57
  - Raw request data reading is now disabled by default and can be enabled via the `record_raw_data` configuration option
58
+
59
+ Since this is a major version bump this release also deprecates ruby versions < 2.0
55
60
 
56
61
  ## 1.5.0 (16/03/2017)
57
62
 
data/README.md CHANGED
@@ -325,7 +325,7 @@ Tags can be added to `track_exception` by passing a tags key in the second param
325
325
  begin
326
326
  # more lovely code
327
327
  rescue Exception => e
328
- Raygun.track_exception(e, tags: ['my', 'tags', 'go here')
328
+ Raygun.track_exception(e, tags: ['my', 'tags', 'go here'])
329
329
  end
330
330
  ```
331
331
 
@@ -1,3 +1,3 @@
1
1
  module Raygun
2
- VERSION = "2.7.0"
2
+ VERSION = "2.7.1"
3
3
  end
@@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = %q{This gem provides support for Ruby and Ruby on Rails for the Raygun.io error reporter}
13
13
  spec.homepage = "http://raygun.io"
14
14
  spec.license = "MIT"
15
+ spec.required_ruby_version = '>= 2.0'
15
16
 
16
17
  spec.files = `git ls-files | grep -Ev '^(test)'`.split("\n")
17
18
  spec.test_files = `git ls-files -- test/*`.split("\n")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raygun4ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.0
4
+ version: 2.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mindscape
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-02-19 00:00:00.000000000 Z
12
+ date: 2018-06-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: httparty
@@ -274,7 +274,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
274
274
  requirements:
275
275
  - - ">="
276
276
  - !ruby/object:Gem::Version
277
- version: '0'
277
+ version: '2.0'
278
278
  required_rubygems_version: !ruby/object:Gem::Requirement
279
279
  requirements:
280
280
  - - ">="