ezlog 0.3.4 → 0.3.5

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
- SHA1:
3
- metadata.gz: 2eb0df81d18a2611151924ec5b2fc43e00ff7deb
4
- data.tar.gz: 578beb59e0b295f4d04feab4325762520e292447
2
+ SHA256:
3
+ metadata.gz: e73705d16d2f3167345f05a0850bcd9b249609d38717d132bad505c52ffa029f
4
+ data.tar.gz: 565ad4f1d10bfd60cfec96c06f86ee8295974d19fcd4493fba12bdb4a94098d1
5
5
  SHA512:
6
- metadata.gz: 81d293e8d6b038d76c11ff7756ef7dfbc69d3e25f88cbc3001fc1cb017439ab9e1941d842691183ea662a974b5b96cd650a18089dd1958e0b3d7ed9c62dca107
7
- data.tar.gz: 1d23b6d01ef33641dfc92746660dd71120c5302c3ec7dfb2080494644ce4bb4b4f09c4c69dbc28f87e85ee91f554c7c74e8878ef0b98beb0ad8045fda3c08b01
6
+ metadata.gz: fedd5799e21e4f258bd90c20467026369dc96e51aebfb9a62703c82d3f4381680fd22a0546711610de429ddfefe741f07e60960f6c8cd60ce9bd22541faece3c
7
+ data.tar.gz: 223cc4fb2d1aee674ed7281d369154b857cc4ed5a4ea5a47c64b58ca5f8d7cd1c9194ae8f2fc053cd8f792ef9d295b3dd72996aba97d82d7bcbd45a52136e132
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ### 0.3.5 (2019-08-14)
2
+
3
+ [Full Changelog](https://github.com/emartech/ezlog/compare/v0.3.4...v0.3.5)
4
+
5
+ * Bug fixes
6
+ * Requiring `ezlog/rspec` in the `spec_helper` correctly captures log messages produced during tests. Requiring
7
+ `ezlog` (as was done in the previous version) fails to capture logs because it loads the gem before `Rails` is
8
+ defined so the Railtie doesn't get executed.
9
+
1
10
  ### 0.3.4 (2019-08-14)
2
11
 
3
12
  [Full Changelog](https://github.com/emartech/ezlog/compare/v0.3.3...v0.3.4)
data/lib/ezlog/rspec.rb CHANGED
@@ -1,7 +1,8 @@
1
- require 'ezlog'
1
+ require 'logging'
2
2
  require 'rspec/logging_helper'
3
3
  require_relative 'rspec/helpers'
4
4
  require_relative 'rspec/matchers'
5
+ require_relative 'logging_layout'
5
6
 
6
7
  RSpec.configure do |config|
7
8
  config.include Ezlog::RSpec::Helpers
data/lib/ezlog/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Ezlog
2
- VERSION = '0.3.4'
2
+ VERSION = '0.3.5'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ezlog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zoltan Ormandi
@@ -150,8 +150,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
150
150
  - !ruby/object:Gem::Version
151
151
  version: '0'
152
152
  requirements: []
153
- rubyforge_project:
154
- rubygems_version: 2.6.13
153
+ rubygems_version: 3.0.1
155
154
  signing_key:
156
155
  specification_version: 4
157
156
  summary: A zero-configuration logging solution for projects using Sidekiq, Rails,