luna_park 0.11.3 → 0.11.4

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
  SHA256:
3
- metadata.gz: bdf7e8b655b452fed676d668734e7ff9aa9ce6acab8fba29db0e07bd22b9b24d
4
- data.tar.gz: 55adce683441034c0b47f1b1f93e45c7d562e7d965ce800eb73e72e71304d73c
3
+ metadata.gz: 25c15d875ee58d0d61589f2041e81c65eeccde628e8a07c584722fc69865741a
4
+ data.tar.gz: 27f13cbf3d1073f651a13c714092e1ebac28b4b9e3c8eb0dcfcc2fdec4b0009e
5
5
  SHA512:
6
- metadata.gz: 49af03152d02807005c2b308f67d4ce5553762a15608e5a562c5c024ede6ccdc0526c9890e55ab4095302bb80e29b86ae5066b39d43892121ec65b6339c1f744
7
- data.tar.gz: 03ab2f5cc9c4c4b945ad0f50a39e841a08b5ab1ecb137b7cbba1ee099270765e21fb63b391ec867bba6eaee5d82d207479b39e04bdc15a36fd62c74860f2cb80
6
+ metadata.gz: e747fa427d30d6b64d3cd4300beb67d27b080b41de497f959caa05b719b94845178c8fa53944261a81fcedb9fb31950a5ba53d01ae87bf529b9eba16a4e92b9a
7
+ data.tar.gz: 0432dfffa7d6702f79fdfa2abdf68b4fee5d9d6fdd4f0864e01fd7829873db8c32a2656b72479f4735d0423256aecb5f97e55c03b5daa3b9c513036062be336f
data/.gitignore CHANGED
@@ -9,6 +9,7 @@
9
9
  /tmp/
10
10
  /.tmp/
11
11
  .byebug_history
12
+ .tool-versions
12
13
 
13
14
  # rspec failure tracking
14
15
  .rspec_status
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- luna_park (0.11.0)
4
+ luna_park (0.11.4)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -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 initaialize of the instance
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))
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LunaPark
4
- VERSION = '0.11.3'
4
+ VERSION = '0.11.4'
5
5
  end
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', '~> 4') { require 'luna_park/notifiers/sentry' }
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.3
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: 2021-09-03 00:00:00.000000000 Z
12
+ date: 2022-08-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bugsnag