business_flow 0.20.0 → 0.21.0

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: 629b01be7c90cd6bd0d11524bda269fc640863487e2a45a59d739497938d0ac9
4
- data.tar.gz: 7e3b3799817d2e8d451da79b266ebb9329f6db311c707ae1608471813f5ecb9f
3
+ metadata.gz: d9d5e39246745984117d29b635e976b219dd98849fa878925c740b9abdd0f499
4
+ data.tar.gz: bc30bd5baf31d6ed5305b830506bbf6ae777ccd4f001c74faa0971498af31ec8
5
5
  SHA512:
6
- metadata.gz: 1b9affb629f4994fe84655c081d429ef056e221c59739d926ee87205d2febb7ab314beda318f0f7f94b38f215ddcd3588b4f813be38918d43496ad6ce0fa066c
7
- data.tar.gz: 2fa9f60dd2d93f674ccf0473ebeb44ac8545d3a2f34cf2a815111a8bc934311bb0b07a205d6d5bd3ef7b84830859c2daa3e4bc07c7ad9819650127050e1c8124
6
+ metadata.gz: efc19e3d43bdb141d74450bcb303b668fd8a6b50077cd7174f2ad71fa76a6218c22a015295f8e95639e1752342b16633ab3e84c793c8417d6ada013f52cfeee0
7
+ data.tar.gz: 2c231d90e0b1e32f8ff1eb15f844f1d563065c5ed34d533b2be3852d007d677bfaf22b395b98a696e2415599e78c463470735f4bb83a60955cc78cb08644c3dd
data/.circleci/config.yml CHANGED
@@ -1,24 +1,11 @@
1
1
  version: 2.1
2
2
 
3
- setup: true
4
-
5
3
  orbs:
6
4
  ruby: circleci/ruby@2.5.3
7
5
 
8
- executors:
9
- docker: # Docker using the Base Convenience Image
10
- docker:
11
- - image: cimg/base:stable
12
- # linux: # a Linux VM running Ubuntu 20.04
13
- # machine:
14
- # image: ubuntu-2004:202107-02
15
- # macos: # macos executor running Xcode
16
- # macos:
17
- # xcode: 14.2.0
18
-
19
6
  references:
20
7
  RUBY_IMAGE: &RUBY_IMAGE
21
- cimg/ruby:3.3.7
8
+ cimg/ruby:3.3.9
22
9
  RUBY_DEPS: &RUBY_DEPS
23
10
  include-branch-in-cache-key: false
24
11
  clean-bundle: true
@@ -57,19 +44,22 @@ jobs:
57
44
  - run: bundle exec reek
58
45
  rspec:
59
46
  parameters:
60
- os:
61
- type: executor
62
47
  ruby-version:
63
48
  type: string
64
- executor: << parameters.os >>
49
+ docker:
50
+ - image: cimg/ruby:<< parameters.ruby-version >>
65
51
  steps:
66
52
  - checkout
67
- - run: 'rm .ruby-*'
68
- - ruby/install:
69
- version: << parameters.ruby-version >>
70
- - run: bundle
71
- - run: appraisal install
72
- - run: appraisal rspec --format p
53
+ - restore_cache:
54
+ key: v3-business_flow-<< parameters.ruby-version >>-{{ checksum "Gemfile.lock" }}-{{ checksum "Appraisals" }}
55
+ - run: bundle config set --local path 'vendor/bundle'
56
+ - run: bundle install
57
+ - run: bundle exec appraisal install --path 'vendor/bundle'
58
+ - save_cache:
59
+ key: v3-business_flow-<< parameters.ruby-version >>-{{ checksum "Gemfile.lock" }}-{{ checksum "Appraisals" }}
60
+ paths:
61
+ - ~/project/vendor/bundle
62
+ - run: bundle exec appraisal rspec --format p
73
63
 
74
64
  workflows:
75
65
  full:
@@ -84,12 +74,8 @@ workflows:
84
74
  - rspec:
85
75
  matrix:
86
76
  parameters:
87
- os:
88
- - docker
89
- # - linux
90
- # - macos # Disabled because macOS testing isn't worth sorting out why GPG isn't present.
91
77
  ruby-version:
92
- - "3.1.7"
93
- - "3.2.8"
94
- - "3.3.8"
95
- - "3.4.3"
78
+ - "3.1.6"
79
+ - "3.2.9"
80
+ - "3.3.9"
81
+ - "3.4.6"
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-3.1.6
1
+ ruby-3.3.9
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## 0.21.0
2
+
3
+ BUG FIXES:
4
+
5
+ * Resolved issue that could result in ClusterLock continuing to hold lock in the event of a Zookeeper error during the unlock process.
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
15
15
  spec.license = 'MIT'
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
- f.match(%r{^(test|spec|features)/})
18
+ f.match(%r{^(test|spec|features|gemfiles)/|(Appraisals|Gemfile)})
19
19
  end
20
20
  spec.bindir = 'exe'
21
21
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
@@ -186,11 +186,10 @@ module BusinessFlow
186
186
  end
187
187
 
188
188
  def self.cleanup(lock, zk_connection)
189
- begin
190
- lock&.unlock
191
- rescue ZK::Exceptions::OperationTimeOut
192
- # Just let the connection close handle this.
193
- end
189
+ lock&.unlock
190
+ rescue ZK::Exceptions::OperationTimeOut
191
+ # Just let the connection close handle this.
192
+ ensure
194
193
  zk_connection&.close!
195
194
  end
196
195
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BusinessFlow
4
- VERSION = '0.20.0'
4
+ VERSION = '0.21.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: business_flow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.0
4
+ version: 0.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Scarborough
@@ -63,30 +63,13 @@ files:
63
63
  - ".ruby-gemset"
64
64
  - ".ruby-version"
65
65
  - ".travis.yml"
66
- - Appraisals
67
- - Gemfile
68
- - Gemfile.lock
66
+ - CHANGELOG.md
69
67
  - LICENSE.txt
70
68
  - README.md
71
69
  - Rakefile
72
70
  - bin/console
73
71
  - bin/setup
74
72
  - business_flow.gemspec
75
- - gemfiles/.bundle/config
76
- - gemfiles/activemodel_4.2.gemfile
77
- - gemfiles/activemodel_4.2.gemfile.lock
78
- - gemfiles/activemodel_5.2.gemfile
79
- - gemfiles/activemodel_5.2.gemfile.lock
80
- - gemfiles/activemodel_6.1.gemfile
81
- - gemfiles/activemodel_6.1.gemfile.lock
82
- - gemfiles/activemodel_7.0.gemfile
83
- - gemfiles/activemodel_7.0.gemfile.lock
84
- - gemfiles/activemodel_7.1.gemfile
85
- - gemfiles/activemodel_7.1.gemfile.lock
86
- - gemfiles/activemodel_7.2.gemfile
87
- - gemfiles/activemodel_7.2.gemfile.lock
88
- - gemfiles/activemodel_8.0.gemfile
89
- - gemfiles/activemodel_8.0.gemfile.lock
90
73
  - lib/business_flow.rb
91
74
  - lib/business_flow/base.rb
92
75
  - lib/business_flow/cacheable.rb
@@ -122,7 +105,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
122
105
  - !ruby/object:Gem::Version
123
106
  version: '0'
124
107
  requirements: []
125
- rubygems_version: 3.6.9
108
+ rubygems_version: 3.7.2
126
109
  specification_version: 4
127
110
  summary: General purpose management of service object flows
128
111
  test_files: []
data/Appraisals DELETED
@@ -1,48 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- if RUBY_ENGINE == 'ruby' && Gem::Version.new(RUBY_VERSION) < Gem::Version.new('3.4.0')
4
- appraise 'activemodel-4.2' do
5
- source 'https://teak_io_199:6YKvtYgoo5R8_zxD@gems.railslts.com' do
6
- gem 'activemodel', '~> 4.2.11'
7
- gem 'activesupport', '~> 4.2.11'
8
- end
9
- end
10
-
11
- appraise 'activemodel-5.2' do
12
- source 'https://teak_io_199:6YKvtYgoo5R8_zxD@gems.railslts.com' do
13
- gem 'activemodel', '~> 5.2.8'
14
- gem 'activesupport', '~> 5.2.8'
15
- end
16
- end
17
- end
18
-
19
- appraise 'activemodel-6.1' do
20
- source 'https://teak_io_199:6YKvtYgoo5R8_zxD@gems.railslts.com' do
21
- gem 'activemodel', '~> 6.1.7'
22
- gem 'activesupport', '~> 6.1.7'
23
- end
24
- end
25
-
26
- if RUBY_ENGINE == 'ruby' && Gem::Version.new(RUBY_VERSION) < Gem::Version.new('3.4.0')
27
- appraise 'activemodel-7.0' do
28
- gem 'activemodel', '~> 7.0.8'
29
- gem 'activesupport', '~> 7.0.8'
30
- end
31
- end
32
-
33
- appraise 'activemodel-7.1' do
34
- gem 'activemodel', '~> 7.1.3'
35
- gem 'activesupport', '~> 7.1.3'
36
- end
37
-
38
- appraise 'activemodel-7.2' do
39
- gem 'activemodel', '~> 7.2.1'
40
- gem 'activesupport', '~> 7.2.1'
41
- end
42
-
43
- if RUBY_ENGINE == 'ruby' && Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.2.0')
44
- appraise 'activemodel-8.0' do
45
- gem 'activemodel', '~> 8.0.0'
46
- gem 'activesupport', '~> 8.0.0'
47
- end
48
- end
data/Gemfile DELETED
@@ -1,25 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- source 'https://rubygems.org'
4
-
5
- git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
6
-
7
- # Specify your gem's dependencies in business_flow.gemspec
8
- gemspec
9
-
10
- gem 'pry', '~> 0.15.2'
11
- gem 'rake', '~> 13.0'
12
- gem 'reek', '~> 6.1'
13
- gem 'retryable', '~> 3.0.4'
14
- gem 'rspec', '~> 3.0'
15
- gem 'rubocop', '~> 1.59'
16
- gem 'rubocop-factory_bot', '~> 2.27'
17
- gem 'rubocop-rspec', '~> 3.0'
18
- gem 'rubocop-rspec_rails', '~> 2.31'
19
- gem 'rubocop-rake', '~> 0.7.0'
20
- gem 'simplecov', '~> 0.22.0'
21
- gem 'timecop', '~> 0.9.1'
22
-
23
- gem 'ruby3-backward-compatibility'
24
-
25
- gem 'appraisal', '~> 2.5.0'
data/Gemfile.lock DELETED
@@ -1,175 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- business_flow (0.20.0)
5
- activemodel (>= 4.2, < 8.1)
6
- activesupport (>= 4.2, < 8.1)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- activemodel (7.1.5.1)
12
- activesupport (= 7.1.5.1)
13
- activesupport (7.1.5.1)
14
- base64
15
- benchmark (>= 0.3)
16
- bigdecimal
17
- concurrent-ruby (~> 1.0, >= 1.0.2)
18
- connection_pool (>= 2.2.5)
19
- drb
20
- i18n (>= 1.6, < 2)
21
- logger (>= 1.4.2)
22
- minitest (>= 5.1)
23
- mutex_m
24
- securerandom (>= 0.3)
25
- tzinfo (~> 2.0)
26
- appraisal (2.5.0)
27
- bundler
28
- rake
29
- thor (>= 0.14.0)
30
- ast (2.4.3)
31
- base64 (0.3.0)
32
- benchmark (0.4.1)
33
- bigdecimal (3.2.2)
34
- coderay (1.1.3)
35
- concurrent-ruby (1.3.5)
36
- connection_pool (2.5.3)
37
- diff-lcs (1.6.2)
38
- docile (1.4.1)
39
- drb (2.2.3)
40
- dry-configurable (1.3.0)
41
- dry-core (~> 1.1)
42
- zeitwerk (~> 2.6)
43
- dry-core (1.1.0)
44
- concurrent-ruby (~> 1.0)
45
- logger
46
- zeitwerk (~> 2.6)
47
- dry-inflector (1.2.0)
48
- dry-initializer (3.2.0)
49
- dry-logic (1.6.0)
50
- bigdecimal
51
- concurrent-ruby (~> 1.0)
52
- dry-core (~> 1.1)
53
- zeitwerk (~> 2.6)
54
- dry-schema (1.14.1)
55
- concurrent-ruby (~> 1.0)
56
- dry-configurable (~> 1.0, >= 1.0.1)
57
- dry-core (~> 1.1)
58
- dry-initializer (~> 3.2)
59
- dry-logic (~> 1.5)
60
- dry-types (~> 1.8)
61
- zeitwerk (~> 2.6)
62
- dry-types (1.8.3)
63
- bigdecimal (~> 3.0)
64
- concurrent-ruby (~> 1.0)
65
- dry-core (~> 1.0)
66
- dry-inflector (~> 1.0)
67
- dry-logic (~> 1.4)
68
- zeitwerk (~> 2.6)
69
- i18n (1.14.7)
70
- concurrent-ruby (~> 1.0)
71
- json (2.12.2)
72
- language_server-protocol (3.17.0.5)
73
- lint_roller (1.1.0)
74
- logger (1.7.0)
75
- method_source (1.1.0)
76
- minitest (5.25.5)
77
- mutex_m (0.3.0)
78
- parallel (1.27.0)
79
- parser (3.3.8.0)
80
- ast (~> 2.4.1)
81
- racc
82
- prism (1.4.0)
83
- pry (0.15.2)
84
- coderay (~> 1.1)
85
- method_source (~> 1.0)
86
- racc (1.8.1)
87
- rainbow (3.1.1)
88
- rake (13.3.0)
89
- reek (6.5.0)
90
- dry-schema (~> 1.13)
91
- logger (~> 1.6)
92
- parser (~> 3.3.0)
93
- rainbow (>= 2.0, < 4.0)
94
- rexml (~> 3.1)
95
- regexp_parser (2.10.0)
96
- retryable (3.0.5)
97
- rexml (3.4.1)
98
- rspec (3.13.1)
99
- rspec-core (~> 3.13.0)
100
- rspec-expectations (~> 3.13.0)
101
- rspec-mocks (~> 3.13.0)
102
- rspec-core (3.13.5)
103
- rspec-support (~> 3.13.0)
104
- rspec-expectations (3.13.5)
105
- diff-lcs (>= 1.2.0, < 2.0)
106
- rspec-support (~> 3.13.0)
107
- rspec-mocks (3.13.5)
108
- diff-lcs (>= 1.2.0, < 2.0)
109
- rspec-support (~> 3.13.0)
110
- rspec-support (3.13.4)
111
- rubocop (1.78.0)
112
- json (~> 2.3)
113
- language_server-protocol (~> 3.17.0.2)
114
- lint_roller (~> 1.1.0)
115
- parallel (~> 1.10)
116
- parser (>= 3.3.0.2)
117
- rainbow (>= 2.2.2, < 4.0)
118
- regexp_parser (>= 2.9.3, < 3.0)
119
- rubocop-ast (>= 1.45.1, < 2.0)
120
- ruby-progressbar (~> 1.7)
121
- unicode-display_width (>= 2.4.0, < 4.0)
122
- rubocop-ast (1.45.1)
123
- parser (>= 3.3.7.2)
124
- prism (~> 1.4)
125
- rubocop-factory_bot (2.27.1)
126
- lint_roller (~> 1.1)
127
- rubocop (~> 1.72, >= 1.72.1)
128
- rubocop-rake (0.7.1)
129
- lint_roller (~> 1.1)
130
- rubocop (>= 1.72.1)
131
- rubocop-rspec (3.6.0)
132
- lint_roller (~> 1.1)
133
- rubocop (~> 1.72, >= 1.72.1)
134
- rubocop-rspec_rails (2.31.0)
135
- lint_roller (~> 1.1)
136
- rubocop (~> 1.72, >= 1.72.1)
137
- rubocop-rspec (~> 3.5)
138
- ruby-progressbar (1.13.0)
139
- ruby3-backward-compatibility (1.5.0)
140
- securerandom (0.3.2)
141
- simplecov (0.22.0)
142
- docile (~> 1.1)
143
- simplecov-html (~> 0.11)
144
- simplecov_json_formatter (~> 0.1)
145
- simplecov-html (0.13.1)
146
- simplecov_json_formatter (0.1.4)
147
- thor (1.3.2)
148
- timecop (0.9.10)
149
- tzinfo (2.0.6)
150
- concurrent-ruby (~> 1.0)
151
- unicode-display_width (2.6.0)
152
- zeitwerk (2.6.18)
153
-
154
- PLATFORMS
155
- ruby
156
-
157
- DEPENDENCIES
158
- appraisal (~> 2.5.0)
159
- business_flow!
160
- pry (~> 0.15.2)
161
- rake (~> 13.0)
162
- reek (~> 6.1)
163
- retryable (~> 3.0.4)
164
- rspec (~> 3.0)
165
- rubocop (~> 1.59)
166
- rubocop-factory_bot (~> 2.27)
167
- rubocop-rake (~> 0.7.0)
168
- rubocop-rspec (~> 3.0)
169
- rubocop-rspec_rails (~> 2.31)
170
- ruby3-backward-compatibility
171
- simplecov (~> 0.22.0)
172
- timecop (~> 0.9.1)
173
-
174
- BUNDLED WITH
175
- 2.6.9
@@ -1,2 +0,0 @@
1
- ---
2
- BUNDLE_RETRY: "1"
@@ -1,24 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "pry", "~> 0.15.2"
6
- gem "rake", "~> 13.0"
7
- gem "reek", "~> 6.1.0"
8
- gem "retryable", "~> 3.0.4"
9
- gem "rspec", "~> 3.0"
10
- gem "rubocop", "~> 1.59"
11
- gem "rubocop-factory_bot", "~> 2.24"
12
- gem "rubocop-rspec", "~> 2.29"
13
- gem "rubocop-rspec_rails", "~> 2.28"
14
- gem "simplecov", "~> 0.22.0"
15
- gem "timecop", "~> 0.9.1"
16
- gem "appraisal", "~> 2.5.0"
17
- gem "ruby3-backward-compatibility"
18
-
19
- source 'https://teak_io_199:6YKvtYgoo5R8_zxD@gems.railslts.com' do
20
- gem "activemodel", "~> 4.2.11"
21
- gem "activesupport", "~> 4.2.11"
22
- end
23
-
24
- gemspec path: "../"
@@ -1,131 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- business_flow (0.19.6)
5
- activemodel (>= 4.2, < 8.1)
6
- activesupport (>= 4.2, < 8.1)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- appraisal (2.5.0)
12
- bundler
13
- rake
14
- thor (>= 0.14.0)
15
- ast (2.4.3)
16
- builder (3.3.0)
17
- coderay (1.1.3)
18
- concurrent-ruby (1.3.5)
19
- diff-lcs (1.6.2)
20
- docile (1.4.1)
21
- i18n (1.14.7)
22
- concurrent-ruby (~> 1.0)
23
- json (2.12.2)
24
- kwalify (0.7.2)
25
- language_server-protocol (3.17.0.5)
26
- method_source (1.1.0)
27
- minitest (5.25.5)
28
- parallel (1.27.0)
29
- parser (3.2.2.4)
30
- ast (~> 2.4.1)
31
- racc
32
- pry (0.15.2)
33
- coderay (~> 1.1)
34
- method_source (~> 1.0)
35
- racc (1.8.1)
36
- rainbow (3.1.1)
37
- rake (13.3.0)
38
- reek (6.1.4)
39
- kwalify (~> 0.7.0)
40
- parser (~> 3.2.0)
41
- rainbow (>= 2.0, < 4.0)
42
- regexp_parser (2.10.0)
43
- retryable (3.0.5)
44
- rexml (3.4.1)
45
- rspec (3.13.1)
46
- rspec-core (~> 3.13.0)
47
- rspec-expectations (~> 3.13.0)
48
- rspec-mocks (~> 3.13.0)
49
- rspec-core (3.13.5)
50
- rspec-support (~> 3.13.0)
51
- rspec-expectations (3.13.5)
52
- diff-lcs (>= 1.2.0, < 2.0)
53
- rspec-support (~> 3.13.0)
54
- rspec-mocks (3.13.5)
55
- diff-lcs (>= 1.2.0, < 2.0)
56
- rspec-support (~> 3.13.0)
57
- rspec-support (3.13.4)
58
- rubocop (1.59.0)
59
- json (~> 2.3)
60
- language_server-protocol (>= 3.17.0)
61
- parallel (~> 1.10)
62
- parser (>= 3.2.2.4)
63
- rainbow (>= 2.2.2, < 4.0)
64
- regexp_parser (>= 1.8, < 3.0)
65
- rexml (>= 3.2.5, < 4.0)
66
- rubocop-ast (>= 1.30.0, < 2.0)
67
- ruby-progressbar (~> 1.7)
68
- unicode-display_width (>= 2.4.0, < 3.0)
69
- rubocop-ast (1.30.0)
70
- parser (>= 3.2.1.0)
71
- rubocop-capybara (2.21.0)
72
- rubocop (~> 1.41)
73
- rubocop-factory_bot (2.26.0)
74
- rubocop (~> 1.41)
75
- rubocop-rspec (2.31.0)
76
- rubocop (~> 1.40)
77
- rubocop-capybara (~> 2.17)
78
- rubocop-factory_bot (~> 2.22)
79
- rubocop-rspec_rails (~> 2.28)
80
- rubocop-rspec_rails (2.29.0)
81
- rubocop (~> 1.40)
82
- ruby-progressbar (1.13.0)
83
- ruby3-backward-compatibility (1.5.0)
84
- simplecov (0.22.0)
85
- docile (~> 1.1)
86
- simplecov-html (~> 0.11)
87
- simplecov_json_formatter (~> 0.1)
88
- simplecov-html (0.13.1)
89
- simplecov_json_formatter (0.1.4)
90
- thor (1.3.2)
91
- thread_safe (0.3.6)
92
- timecop (0.9.10)
93
- tzinfo (1.2.11)
94
- thread_safe (~> 0.1)
95
- unicode-display_width (2.6.0)
96
-
97
- GEM
98
- remote: https://teak_io_199:6YKvtYgoo5R8_zxD@gems.railslts.com/
99
- specs:
100
- activemodel (4.2.11.39)
101
- activesupport (= 4.2.11.39)
102
- builder (~> 3.1)
103
- activesupport (4.2.11.39)
104
- i18n (>= 0.7, < 2)
105
- minitest (~> 5.1)
106
- thread_safe (~> 0.3, >= 0.3.4)
107
- tzinfo (~> 1.2, >= 1.2.10)
108
-
109
- PLATFORMS
110
- ruby
111
-
112
- DEPENDENCIES
113
- activemodel (~> 4.2.11)!
114
- activesupport (~> 4.2.11)!
115
- appraisal (~> 2.5.0)
116
- business_flow!
117
- pry (~> 0.15.2)
118
- rake (~> 13.0)
119
- reek (~> 6.1.0)
120
- retryable (~> 3.0.4)
121
- rspec (~> 3.0)
122
- rubocop (~> 1.59)
123
- rubocop-factory_bot (~> 2.24)
124
- rubocop-rspec (~> 2.29)
125
- rubocop-rspec_rails (~> 2.28)
126
- ruby3-backward-compatibility
127
- simplecov (~> 0.22.0)
128
- timecop (~> 0.9.1)
129
-
130
- BUNDLED WITH
131
- 2.6.9
@@ -1,24 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "pry", "~> 0.15.2"
6
- gem "rake", "~> 13.0"
7
- gem "reek", "~> 6.1"
8
- gem "retryable", "~> 3.0.4"
9
- gem "rspec", "~> 3.0"
10
- gem "rubocop", "~> 1.59"
11
- gem "rubocop-factory_bot", "~> 2.24"
12
- gem "rubocop-rspec", "~> 2.29"
13
- gem "rubocop-rspec_rails", "~> 2.28"
14
- gem "simplecov", "~> 0.22.0"
15
- gem "timecop", "~> 0.9.1"
16
- gem "appraisal", "~> 2.5.0"
17
- gem "ruby3-backward-compatibility"
18
-
19
- source 'https://teak_io_199:6YKvtYgoo5R8_zxD@gems.railslts.com' do
20
- gem "activemodel", "~> 5.2.8"
21
- gem "activesupport", "~> 5.2.8"
22
- end
23
-
24
- gemspec path: "../"