sapience 0.2.5 → 0.2.6

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: f2ab0f8b23cf762ed9d05be6a9c3da70561f0d72
4
- data.tar.gz: da71798a51acb98d05f161264663da01de0e29d0
3
+ metadata.gz: 53c39e68a39ac8703108c987a4ff8397167d858a
4
+ data.tar.gz: 182127c564ffd512bc990c62f7494dd931e98ffd
5
5
  SHA512:
6
- metadata.gz: 3b8a2241815ad570724c0be06c4f51964577d3b9c38c20f13e3f9273300858bedf9bf5e9b4ffa627803a027824b7a8b826c41a89fa7af94c0b72eef5873547db
7
- data.tar.gz: b460a771ddbaf06da86ba135563903ccac31c5b0b661db44fb005b2040070c52b2bc003346d5286771790d0a848207dc19c21dd65849c8226564aa22bd4e24ae
6
+ metadata.gz: f317cdf099c21e450d9aa76b60b47dd6ce144480272516e4eb41994b48b5212f0d86431c9f2635c92ce3fdf0c537b3671d1ca0eea998070d44318f560829563d
7
+ data.tar.gz: c9a6c2bf077365386bb52fe2c71060280053b7caab8f784b7158d0151256715e4b60f44f1eeb7bea9cddf2187838bb188fad646c03d926c36cd52b9a7d851b7d
data/CHANGELOG.md CHANGED
@@ -1,4 +1,11 @@
1
- ## v0.2.3 - Unreleased
1
+ ## v0.2.5
2
+
3
+ - Allow the log_executor to be configured to either `:single_thread_executor` or `:immediate_executor`
4
+ - Test coverage improvement
5
+ - Working rails integration
6
+ - Minor adjustments to the log_formatter to make it more compatible with log_stasher.
7
+
8
+ ## v0.2.3
2
9
 
3
10
  - Adds debugging and coverage for sneakers integration
4
11
 
@@ -1,8 +1,10 @@
1
- class ActionCable::Connection::TaggedLoggerProxy # rubocop:disable ClassAndModuleChildren
2
- alias_method :orig_tag, :tag
1
+ if defined?(ActionCable)
2
+ class ActionCable::Connection::TaggedLoggerProxy # rubocop:disable ClassAndModuleChildren
3
+ alias_method :orig_tag, :tag
3
4
 
4
- def tag(logger, &block)
5
- current_tags = tags - logger.tags
6
- logger.tagged(*current_tags, &block)
5
+ def tag(logger, &block)
6
+ current_tags = tags - logger.tags
7
+ logger.tagged(*current_tags, &block)
8
+ end
7
9
  end
8
- end
10
+ end
@@ -1,3 +1,3 @@
1
1
  module Sapience
2
- VERSION = "0.2.5"
2
+ VERSION = "0.2.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sapience
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mikael Henriksson