luna_park 0.11.3 → 0.11.4
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 +4 -4
- data/.gitignore +1 -0
- data/CHANGELOG.md +7 -3
- data/Gemfile.lock +1 -1
- data/lib/luna_park/notifiers/log.rb +1 -1
- data/lib/luna_park/version.rb +1 -1
- data/lib/luna_park.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 25c15d875ee58d0d61589f2041e81c65eeccde628e8a07c584722fc69865741a
|
|
4
|
+
data.tar.gz: 27f13cbf3d1073f651a13c714092e1ebac28b4b9e3c8eb0dcfcc2fdec4b0009e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e747fa427d30d6b64d3cd4300beb67d27b080b41de497f959caa05b719b94845178c8fa53944261a81fcedb9fb31950a5ba53d01ae87bf529b9eba16a4e92b9a
|
|
7
|
+
data.tar.gz: 0432dfffa7d6702f79fdfa2abdf68b4fee5d9d6fdd4f0864e01fd7829873db8c32a2656b72479f4735d0423256aecb5f97e55c03b5daa3b9c513036062be336f
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -4,12 +4,16 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.11.4] - 2022-07-11
|
|
8
|
+
Changed
|
|
9
|
+
- allow require Notifiers::Sentry when sentry-ruby version >= 4
|
|
10
|
+
|
|
7
11
|
## [0.11.3] - 2021-09-02
|
|
8
|
-
Added
|
|
12
|
+
Added
|
|
9
13
|
- new mapper `Mappers::Codirectionsl` with DSL
|
|
10
14
|
|
|
11
15
|
## [0.11.2] - 2021-09-01
|
|
12
|
-
Added
|
|
16
|
+
Added
|
|
13
17
|
- Github CI
|
|
14
18
|
|
|
15
19
|
## [0.11.1] - 2021-05-24
|
|
@@ -24,7 +28,7 @@ Changed
|
|
|
24
28
|
## [0.11.0] - 2021-03-18
|
|
25
29
|
Changed
|
|
26
30
|
- Rename Interactors to UseCases
|
|
27
|
-
- Rename Errors::Adaptive to Errors:Base
|
|
31
|
+
- Rename Errors::Adaptive to Errors:Base
|
|
28
32
|
- Rename Errors::Processing to Errors::Business
|
|
29
33
|
Added
|
|
30
34
|
- Add class Errors::System
|
data/Gemfile.lock
CHANGED
|
@@ -86,7 +86,7 @@ module LunaPark
|
|
|
86
86
|
#
|
|
87
87
|
# stderr = Stderr.new
|
|
88
88
|
# stderr.logger # => #<Logger:0x000056445e1e2118 ... @filename="example.log"...
|
|
89
|
-
# Or in the
|
|
89
|
+
# Or in the initialize of the instance
|
|
90
90
|
#
|
|
91
91
|
# - On instance
|
|
92
92
|
# stderr = LunaPark::Notifier::Log.new(logger: Logger.new(STDERR))
|
data/lib/luna_park/version.rb
CHANGED
data/lib/luna_park.rb
CHANGED
|
@@ -51,7 +51,7 @@ require 'luna_park/forms/single_item'
|
|
|
51
51
|
|
|
52
52
|
LunaPark::Tools.if_gem_installed('rest-client', '~> 2.1') { require 'luna_park/http/client' }
|
|
53
53
|
LunaPark::Tools.if_gem_installed('bugsnag', '~> 6') { require 'luna_park/notifiers/bugsnag' }
|
|
54
|
-
LunaPark::Tools.if_gem_installed('sentry-ruby', '
|
|
54
|
+
LunaPark::Tools.if_gem_installed('sentry-ruby', '>= 4') { require 'luna_park/notifiers/sentry' }
|
|
55
55
|
|
|
56
56
|
require 'luna_park/notifiers/log'
|
|
57
57
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: luna_park
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.11.
|
|
4
|
+
version: 0.11.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexander Kudrin
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2022-08-30 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bugsnag
|