coveralls_reborn 0.13.1 → 0.13.2

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,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c952a311a5051e343b406d35387b62193443ea3f32249823e0ca8413181a870a
4
- data.tar.gz: 7f36f76ad52ab6ad79f46607945055d695cfc6ef937d5823362fd70a2f6f8cec
3
+ metadata.gz: e85003e7d77482e6743fd759d5987f66c2e7a82a8dad7df91d73b4db21496b43
4
+ data.tar.gz: db302deed172653ab92a6fb47f88dfc25e9e00b47fd008e3191a9b80b92d11b2
5
5
  SHA512:
6
- metadata.gz: 9cecd4dc906a741e9636cab8050984d7140091d3c43ea3d9e4760e02fe268e8cd6cdc591ef055b7e4aea8c9b433cebffa11723d0d74b454ac306e537cfb3bb58
7
- data.tar.gz: 5e0ab356e724445ab6da478a9e2b93da1361766c0eae95cc4baedd3b351fafc58524133599e6787c57d6b946dc29fe9636080b09f427c1d0969e7f095a065f50
6
+ metadata.gz: b45bc97c7019b347684edd5e1447eb2d21f954f5cb0349cbc117779958bb5508497997f0dc86f53f614801f08b9ca25d555b5cf8dede8c4279b0f95e1258a8b3
7
+ data.tar.gz: ce86a724b1169b3adfab6cf51a480bc27e964dcf677088aee5db1915e12d099d9e931ef1508be5b1408142d20f47ed0a15cefc6e03c55dbae276fb5867aa1a2b
@@ -1,3 +1,23 @@
1
1
  # Changelog
2
2
 
3
- ### Please see Github Releases section for current releases.
3
+ ## 0.13.2 / 2019-07-19
4
+
5
+ * [FIX] Do not rescue from LoadError with required gems
6
+
7
+ ## 0.13.1 / 2019-07-17
8
+
9
+ * [FIX] Rescue from LoadError when VCR or webmock are not available
10
+
11
+ ## 0.13.0 / 2019-07-16
12
+
13
+ * [FEATURE] Add SimpleCov 0.17.0 compatibility
14
+ * [FEATURE] Drop Ruby 2.2 Support
15
+ * [ENHANCEMENT] Test against latest JRuby version
16
+ * [ENHANCEMENT] Update dependencies
17
+
18
+ ## 0.12.0 / 2018-07-27
19
+
20
+ * [FEATURE] Drop Ruby 2.1 compatibility
21
+ * [ENHANCEMENT] Remove gemnasium badge
22
+ * [ENHANCEMENT] Test against latest JRuby version
23
+ * [ENHANCEMENT] Update dependencies
data/README.md CHANGED
@@ -7,5 +7,5 @@ An up-to-date fork of [lemurheavy/coveralls-ruby](https://github.com/lemurheavy/
7
7
  Add to your `Gemfile`:
8
8
 
9
9
  ```rb
10
- gem 'coveralls_reborn', '~> 0.13.1', require: false
10
+ gem 'coveralls_reborn', '~> 0.13.2', require: false
11
11
  ```
@@ -44,7 +44,6 @@ module Coveralls
44
44
  begin
45
45
  require 'simplecov'
46
46
  @adapter = :simplecov if defined?(::SimpleCov)
47
- rescue LoadError # rubocop:disable Lint/HandleExceptions
48
47
  rescue StandardError => e
49
48
  # TODO: Add error action
50
49
  puts e.message
@@ -65,14 +65,11 @@ module Coveralls
65
65
  # Returns the formatted string.
66
66
  def format(string, options = {})
67
67
  unless no_color?
68
- begin
69
- require 'term/ansicolor'
70
- options[:color]&.split(/\s/)&.reverse_each do |color|
71
- next unless Term::ANSIColor.respond_to?(color.to_sym)
68
+ require 'term/ansicolor'
69
+ options[:color]&.split(/\s/)&.reverse_each do |color|
70
+ next unless Term::ANSIColor.respond_to?(color.to_sym)
72
71
 
73
- string = Term::ANSIColor.send(color.to_sym, string)
74
- end
75
- rescue LoadError # rubocop:disable Lint/HandleExceptions
72
+ string = Term::ANSIColor.send(color.to_sym, string)
76
73
  end
77
74
  end
78
75
  string
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Coveralls
4
- VERSION = '0.13.1'
4
+ VERSION = '0.13.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coveralls_reborn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.1
4
+ version: 0.13.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Merwin
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2019-07-17 00:00:00.000000000 Z
13
+ date: 2019-07-19 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: json