perfect_audit 0.3.0 → 0.3.1

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: 37964af9226a77b0adcbe2619adebdfcef92f0c6a41dee9163faf80ef75abb40
4
- data.tar.gz: 58e3750c9076f75773370e56510e2c0fe5725880940c45fde356813dca8a6070
3
+ metadata.gz: b2525916f152c32acfdf977f643690ea0c5485ddd61aaf0cc648d70fa8c471df
4
+ data.tar.gz: 79995d6cf94966c52ecd07951224a36e5f77cbcf02edd564ccc39d2c445ec09f
5
5
  SHA512:
6
- metadata.gz: d44df8fa1402e817ede0b6b7f280830a860020774d105a8811d56d12e20341b4aa6c6fdcffab9cbcb430752247d77abaf96fe48dba2d35e807fcb540d607379a
7
- data.tar.gz: 8806f8b74208d3b5d14a70c71114e27f29ee5a998307b8e6b666bdd9d90b76ef73c2c1e65d9b5517e5723f6610a1a6e5ac46364a15b46a204533b0a8473ec2df
6
+ metadata.gz: 1b6e7b7e09e0f97cdb88e86f607b3faaffa0d1ac79041141ef6d549bd86dbaa7a7a017d2860e0f2391345ac0d7018627f89ba8e2f08a51bf8d59a4a9e0e140d1
7
+ data.tar.gz: 9cf768ec14bc3767401b423da3def0969a5e826cc97b6811e1f5dc98b6dcd0c3c72649de40e9494a1530db483f20144e123370d487c844ce41d4ce16a88bc6d4
data/.gitignore CHANGED
@@ -7,3 +7,5 @@
7
7
  /pkg/
8
8
  /spec/reports/
9
9
  /tmp/
10
+
11
+ *.gem
data/.rubocop.yml CHANGED
@@ -1,7 +1,6 @@
1
- inherit_from: .rubocop_todo.yml
2
-
3
1
  inherit_gem:
4
2
  jetrockets-standard: config/gems.yml
5
3
 
6
4
  AllCops:
7
- TargetRubyVersion: 2.7
5
+ TargetRubyVersion: 2.7
6
+ NewCops: enable
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PerfectAudit
4
- VERSION = '0.3.0'
4
+ VERSION = '0.3.1'
5
5
  end
data/lib/perfect_audit.rb CHANGED
@@ -27,10 +27,18 @@ module PerfectAudit
27
27
  # PerfectAudit::TransactionsRepository.new
28
28
  # end
29
29
 
30
+ def container
31
+ @container ||= Dry::Container.new
32
+ end
33
+
34
+ def configuration
35
+ @configuration ||= OpenStruct.new
36
+ end
37
+
30
38
  private
31
39
 
32
40
  def register!
33
- connection = PerfectAudit::Connection.new(configuration.to_h)
41
+ connection = PerfectAudit::Connection.new(**configuration.to_h)
34
42
 
35
43
  container.register :connection, -> { connection }
36
44
  container.register :response_parser, -> { PerfectAudit::ResponseParser }
@@ -39,21 +47,7 @@ module PerfectAudit
39
47
 
40
48
  private
41
49
 
42
- @@container = Dry::Container.new
43
-
44
- AutoInject = Dry::AutoInject(@@container)
45
-
46
- def self.container
47
- @@container
48
- end
49
-
50
- def self.container=(v)
51
- @@container = v
52
- end
53
-
54
- def self.configuration
55
- @@configuration ||= OpenStruct.new
56
- end
50
+ AutoInject = Dry::AutoInject(container)
57
51
  end
58
52
 
59
53
  require 'perfect_audit/api/repositories'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: perfect_audit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Igor Alexandrov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-03-13 00:00:00.000000000 Z
11
+ date: 2023-03-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-auto_inject
@@ -232,7 +232,6 @@ files:
232
232
  - ".irbrc"
233
233
  - ".rspec"
234
234
  - ".rubocop.yml"
235
- - ".rubocop_todo.yml"
236
235
  - ".ruby-version"
237
236
  - ".travis.yml"
238
237
  - Gemfile
data/.rubocop_todo.yml DELETED
@@ -1,43 +0,0 @@
1
- # This configuration was generated by
2
- # `rubocop --auto-gen-config`
3
- # on 2023-03-13 17:14:29 UTC using RuboCop version 1.44.1.
4
- # The point is for the user to remove these configuration records
5
- # one by one as the offenses are removed from the code base.
6
- # Note that changes in the inspected code, or installation of new
7
- # versions of RuboCop, may require this file to be generated again.
8
-
9
- # Offense count: 3
10
- Lint/IneffectiveAccessModifier:
11
- Exclude:
12
- - 'lib/perfect_audit.rb'
13
-
14
- # Offense count: 2
15
- RSpec/Be:
16
- Exclude:
17
- - 'spec/perfect_audit_spec.rb'
18
-
19
- # Offense count: 1
20
- # Configuration parameters: IgnoredMetadata.
21
- RSpec/DescribeClass:
22
- Exclude:
23
- - 'spec/perfect_audit_spec.rb'
24
-
25
- # Offense count: 3
26
- # Configuration parameters: Include, CustomTransform, IgnoreMethods, SpecSuffixOnly.
27
- # Include: **/*_spec*rb*, **/spec/**/*
28
- RSpec/FilePath:
29
- Exclude:
30
- - 'spec/api/books_repository_spec.rb'
31
- - 'spec/api/connection_spec.rb'
32
- - 'spec/api/documents_repository_spec.rb'
33
-
34
- # Offense count: 4
35
- # Configuration parameters: .
36
- # SupportedStyles: have_received, receive
37
- RSpec/MessageSpies:
38
- EnforcedStyle: receive
39
-
40
- # Offense count: 1
41
- RSpec/MultipleDescribes:
42
- Exclude:
43
- - 'spec/perfect_audit_spec.rb'