auto_increment 1.5.2 → 1.6.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: f19f9f54c7b8a7641d6adb7527d9f9054ad131d015af8aec346cac61711129f7
4
- data.tar.gz: 6ac27b9292e3003db26a709ac7b4c78f18b1e5d7c0c35c0f9f1e47a7f7132763
3
+ metadata.gz: 3c836f605764b93022052c3f43a7d94b9aab895bb6bbe3d24c970599a7731d3c
4
+ data.tar.gz: 3848325812e4694689d7dd8b010d62e4aaf9288b0b1314f6c5392a5949042e75
5
5
  SHA512:
6
- metadata.gz: 85ac0c4b0cd645f05703685bfcf3d64158a409db01d37eda4bf85c0e65c57029a2d656a1830fce754b150a901533ee5f4f60e152fce632926805c8f88ccd0e3b
7
- data.tar.gz: bab85c29b564da957bb9088000bf4da689e937ba86caacbc4290d910480d4bf620e44ba68c0f1f9acc6eccaca57a5513474bbf553ba402d70d0709f8a9a76c37
6
+ metadata.gz: b3c9fe3f8ec4934c528fd87e2abfaa6e42db4022378a62ae2d36f948867b27c52331885be4767ccbade6ee70b3f13379428c0c69a132d19cdc1889ab07b34c8b
7
+ data.tar.gz: 22a60299c98af77d0c1ce288b7c7a99c5361b41d90a543ca9a14d55c3460f179968339e24990e39e6c27402e6445039e5894b61c4963c46ac619af05e899e26e
@@ -0,0 +1,62 @@
1
+ ---
2
+ version: "2.1"
3
+
4
+ commands:
5
+ shared_steps:
6
+ steps:
7
+ - checkout
8
+
9
+ # Install bundler
10
+ - run: gem install bundler:2.4.22
11
+
12
+ # Restore Cached Dependencies
13
+ - restore_cache:
14
+ name: Restore bundle cache
15
+ key: auto_increment-{{ checksum "Gemfile.lock" }}
16
+
17
+ # Bundle install dependencies
18
+ - run: bundle install --path vendor/bundle
19
+
20
+ # Cache Dependencies
21
+ - save_cache:
22
+ name: Store bundle cache
23
+ key: auto_increment-{{ checksum "Gemfile.lock" }}
24
+ paths:
25
+ - vendor/bundle
26
+
27
+ default_job: &default_job
28
+ working_directory: ~/auto_increment
29
+
30
+ jobs:
31
+ ruby-27:
32
+ <<: *default_job
33
+ steps:
34
+ - shared_steps
35
+ - run: bundle exec appraisal install
36
+ - run: bundle exec appraisal rails_6_0 rspec
37
+ - run: bundle exec appraisal rails_6_1 rspec
38
+ docker:
39
+ - image: cimg/ruby:2.7.7
40
+ environment:
41
+ RAILS_ENV: test
42
+
43
+ ruby-32:
44
+ <<: *default_job
45
+ steps:
46
+ - shared_steps
47
+ - run: bundle exec appraisal install
48
+ - run: bundle exec appraisal rails_6_0 rspec
49
+ - run: bundle exec appraisal rails_6_1 rspec
50
+ - run: bundle exec appraisal rails_7_0 rspec
51
+ - run: bundle exec appraisal rails_7_1 rspec
52
+ docker:
53
+ - image: cimg/ruby:3.2.2
54
+ environment:
55
+ RAILS_ENV: test
56
+
57
+ workflows:
58
+ version: 2
59
+ build-test:
60
+ jobs:
61
+ - ruby-32
62
+ - ruby-27
data/.gitignore CHANGED
@@ -1,36 +1,25 @@
1
1
  *.gem
2
- *.rbc
3
- /.config
4
- /coverage/
5
- /InstalledFiles
6
- /pkg/
7
- /spec/reports/
8
- /test/tmp/
9
- /test/version_tmp/
10
- /tmp/
11
-
12
- ## Specific to RubyMotion:
13
- .dat*
14
- .repl_history
15
- build/
16
-
17
- ## Documentation cache and generated files:
18
- /.yardoc/
19
- /_yardoc/
20
- /doc/
21
- /rdoc/
22
-
23
- ## Environment normalisation:
24
- /.bundle/
25
- /vendor/bundle
26
- /lib/bundler/man/
27
-
28
- # for a library or gem, you might want to ignore these files since the code is
29
- # intended to run in multiple environments; otherwise, check them in:
30
- Gemfile.lock
31
- /gemfiles/*.gemfile.lock
32
- .ruby-version
33
- .ruby-gemset
34
-
35
- # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
36
- .rvmrc
2
+ !.keep
3
+ *.DS_Store
4
+ *.swo
5
+ *.swp
6
+ /.bundle
7
+ /.env
8
+ /.foreman
9
+ /coverage/*
10
+ /db/*.sqlite3
11
+ /log/*
12
+ /tmp/*
13
+ !/log/.keep
14
+ !/tmp/.keep
15
+ /spec/db
16
+ /tags
17
+ pkg
18
+ *.ipr
19
+ *.iws
20
+ *.iml
21
+ /.idea
22
+ .byebug_history
23
+ gemfiles/.bundle/
24
+ .yardoc
25
+ /doc
data/.rubocop.yml ADDED
@@ -0,0 +1,44 @@
1
+ Gemspec/RequiredRubyVersion:
2
+ Enabled: false
3
+
4
+ Metrics/AbcSize:
5
+ Enabled: false
6
+
7
+ Metrics/BlockLength:
8
+ Enabled: false
9
+
10
+ Metrics/BlockNesting:
11
+ Enabled: false
12
+
13
+ Metrics/ClassLength:
14
+ Enabled: false
15
+
16
+ Metrics/CollectionLiteralLength:
17
+ Enabled: false
18
+
19
+ Metrics/CyclomaticComplexity:
20
+ Enabled: false
21
+
22
+ Metrics/MethodLength:
23
+ Enabled: false
24
+
25
+ Metrics/ModuleLength:
26
+ Enabled: false
27
+
28
+ Metrics/ParameterLists:
29
+ Enabled: false
30
+
31
+ Metrics/PerceivedComplexity:
32
+ Enabled: false
33
+
34
+ Style/StringLiterals:
35
+ Exclude:
36
+ - "gemfiles/*"
37
+
38
+ Style/FrozenStringLiteralComment:
39
+ Exclude:
40
+ - "gemfiles/*"
41
+
42
+ AllCops:
43
+ TargetRubyVersion: 3.2
44
+ NewCops: enable
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.2.2
data/Appraisals CHANGED
@@ -1,18 +1,15 @@
1
- RAILS_VERSIONS = %w(
2
- 4.2.11.1
3
- 5.0.7.2
4
- 5.1.6.2
5
- 5.2.2.1
6
- 6.0.3.4
7
- 6.1.0
8
- )
1
+ # frozen_string_literal: true
9
2
 
10
- RAILS_VERSIONS.each do |version|
11
- appraise "rails_#{version}" do
3
+ RAILS_VERSIONS = {
4
+ '6_0' => '6.0.6.1',
5
+ '6_1' => '6.1.7.6',
6
+ '7_0' => '7.0.8',
7
+ '7_1' => '7.1.2'
8
+ }.freeze
9
+
10
+ RAILS_VERSIONS.each do |name, version|
11
+ appraise "rails_#{name}" do
12
12
  gem 'activerecord', version
13
13
  gem 'activesupport', version
14
- if version.split('.').first.to_i < 6
15
- gem 'sqlite3', '1.3.13'
16
- end
17
14
  end
18
15
  end
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,153 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ auto_increment (1.5.2)
5
+ activerecord (>= 6.0)
6
+ activesupport (>= 6.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ activemodel (7.1.2)
12
+ activesupport (= 7.1.2)
13
+ activerecord (7.1.2)
14
+ activemodel (= 7.1.2)
15
+ activesupport (= 7.1.2)
16
+ timeout (>= 0.4.0)
17
+ activesupport (7.1.2)
18
+ base64
19
+ bigdecimal
20
+ concurrent-ruby (~> 1.0, >= 1.0.2)
21
+ connection_pool (>= 2.2.5)
22
+ drb
23
+ i18n (>= 1.6, < 2)
24
+ minitest (>= 5.1)
25
+ mutex_m
26
+ tzinfo (~> 2.0)
27
+ appraisal (2.5.0)
28
+ bundler
29
+ rake
30
+ thor (>= 0.14.0)
31
+ ast (2.4.2)
32
+ base64 (0.2.0)
33
+ bigdecimal (3.1.5)
34
+ coderay (1.1.3)
35
+ concurrent-ruby (1.2.2)
36
+ connection_pool (2.4.1)
37
+ database_cleaner (2.0.2)
38
+ database_cleaner-active_record (>= 2, < 3)
39
+ database_cleaner-active_record (2.1.0)
40
+ activerecord (>= 5.a)
41
+ database_cleaner-core (~> 2.0.0)
42
+ database_cleaner-core (2.0.1)
43
+ diff-lcs (1.5.0)
44
+ drb (2.2.0)
45
+ ruby2_keywords
46
+ ffi (1.16.3)
47
+ formatador (1.1.0)
48
+ fuubar (2.5.1)
49
+ rspec-core (~> 3.0)
50
+ ruby-progressbar (~> 1.4)
51
+ guard (2.18.1)
52
+ formatador (>= 0.2.4)
53
+ listen (>= 2.7, < 4.0)
54
+ lumberjack (>= 1.0.12, < 2.0)
55
+ nenv (~> 0.1)
56
+ notiffany (~> 0.0)
57
+ pry (>= 0.13.0)
58
+ shellany (~> 0.0)
59
+ thor (>= 0.18.1)
60
+ guard-compat (1.2.1)
61
+ guard-rspec (4.7.3)
62
+ guard (~> 2.1)
63
+ guard-compat (~> 1.1)
64
+ rspec (>= 2.99.0, < 4.0)
65
+ i18n (1.14.1)
66
+ concurrent-ruby (~> 1.0)
67
+ json (2.7.1)
68
+ language_server-protocol (3.17.0.3)
69
+ listen (3.8.0)
70
+ rb-fsevent (~> 0.10, >= 0.10.3)
71
+ rb-inotify (~> 0.9, >= 0.9.10)
72
+ lumberjack (1.2.10)
73
+ method_source (1.0.0)
74
+ minitest (5.20.0)
75
+ mutex_m (0.2.0)
76
+ nenv (0.3.0)
77
+ notiffany (0.1.3)
78
+ nenv (~> 0.1)
79
+ shellany (~> 0.0)
80
+ parallel (1.24.0)
81
+ parser (3.2.2.4)
82
+ ast (~> 2.4.1)
83
+ racc
84
+ pry (0.14.2)
85
+ coderay (~> 1.1)
86
+ method_source (~> 1.0)
87
+ racc (1.7.3)
88
+ rainbow (3.1.1)
89
+ rake (13.1.0)
90
+ rb-fsevent (0.11.2)
91
+ rb-inotify (0.10.1)
92
+ ffi (~> 1.0)
93
+ regexp_parser (2.8.3)
94
+ rexml (3.2.6)
95
+ rspec (3.12.0)
96
+ rspec-core (~> 3.12.0)
97
+ rspec-expectations (~> 3.12.0)
98
+ rspec-mocks (~> 3.12.0)
99
+ rspec-core (3.12.2)
100
+ rspec-support (~> 3.12.0)
101
+ rspec-expectations (3.12.3)
102
+ diff-lcs (>= 1.2.0, < 2.0)
103
+ rspec-support (~> 3.12.0)
104
+ rspec-mocks (3.12.6)
105
+ diff-lcs (>= 1.2.0, < 2.0)
106
+ rspec-support (~> 3.12.0)
107
+ rspec-nc (0.3.0)
108
+ rspec (>= 3)
109
+ terminal-notifier (>= 1.4)
110
+ rspec-support (3.12.1)
111
+ rubocop (1.59.0)
112
+ json (~> 2.3)
113
+ language_server-protocol (>= 3.17.0)
114
+ parallel (~> 1.10)
115
+ parser (>= 3.2.2.4)
116
+ rainbow (>= 2.2.2, < 4.0)
117
+ regexp_parser (>= 1.8, < 3.0)
118
+ rexml (>= 3.2.5, < 4.0)
119
+ rubocop-ast (>= 1.30.0, < 2.0)
120
+ ruby-progressbar (~> 1.7)
121
+ unicode-display_width (>= 2.4.0, < 3.0)
122
+ rubocop-ast (1.30.0)
123
+ parser (>= 3.2.1.0)
124
+ ruby-progressbar (1.13.0)
125
+ ruby2_keywords (0.0.5)
126
+ shellany (0.0.1)
127
+ sqlite3 (1.4.2)
128
+ terminal-notifier (2.0.0)
129
+ thor (1.3.0)
130
+ timeout (0.4.1)
131
+ tzinfo (2.0.6)
132
+ concurrent-ruby (~> 1.0)
133
+ unicode-display_width (2.5.0)
134
+
135
+ PLATFORMS
136
+ ruby
137
+
138
+ DEPENDENCIES
139
+ appraisal
140
+ auto_increment!
141
+ bundler
142
+ database_cleaner
143
+ fuubar
144
+ guard
145
+ guard-rspec
146
+ rake
147
+ rspec
148
+ rspec-nc
149
+ rubocop
150
+ sqlite3 (>= 1.3.13)
151
+
152
+ BUNDLED WITH
153
+ 2.4.22
data/Guardfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  guard :rspec, cmd: 'bundle exec rspec' do
2
4
  watch(%r{^spec/.+_spec\.rb$})
3
5
  watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
data/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # auto_increment
2
2
 
3
- [![Build Status](https://travis-ci.org/felipediesel/auto_increment.svg?branch=master)](https://travis-ci.org/felipediesel/auto_increment)
4
- [![Coverage Status](https://coveralls.io/repos/felipediesel/auto_increment/badge.svg?branch=master)](https://coveralls.io/r/felipediesel/auto_increment?branch=master)
3
+ [![CircleCI](https://dl.circleci.com/status-badge/img/gh/felipediesel/auto_increment/tree/master.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/felipediesel/auto_increment/tree/master)
5
4
  [![Code Climate](https://codeclimate.com/github/felipediesel/auto_increment/badges/gpa.svg)](https://codeclimate.com/github/felipediesel/auto_increment)
6
5
 
7
6
  auto_increment provides automatic incrementation for a integer or string fields in Rails.
@@ -48,17 +47,19 @@ auto_increment :letter, scope: [:account_id, :job_id], model_scope: :in_account,
48
47
 
49
48
  First argument is the column that will be incremented. Can be integer or string.
50
49
 
51
- * scope: you can define columns that will be scoped and you can use as many as you want (default: nil)
52
- * model_scope: you can define model scopes that will be executed and you can use as many as you want (default: nil)
53
- * initial: initial value of column (default: 1)
54
- * force: you can set a value before create and auto_increment will not change that, but if you do want this, set force to true (default: false)
55
- * lock: you can set a lock on the max query. (default: false)
56
- * before: you can choose a different callback to be used (:create, :save, :validation) (default: create)
57
-
50
+ - scope: you can define columns that will be scoped and you can use as many as you want (default: nil)
51
+ - model_scope: you can define model scopes that will be executed and you can use as many as you want (default: nil)
52
+ - initial: initial value of column (default: 1)
53
+ - force: you can set a value before create and auto_increment will not change that, but if you do want this, set force to true (default: false)
54
+ - lock: you can set a lock on the max query. (default: false)
55
+ - before: you can choose a different callback to be used (:create, :save, :validation) (default: create)
58
56
 
59
57
  ## Compatibility
60
58
 
61
- Tested with Rails 6.1.0, 6.0.3.4, 5.2.2.1, 5.1.6.2, 5.0.7.2 and 4.2.11.1 in Ruby 2.6.6.
59
+ Tested with Rails 6.1, 6 in Ruby 2.7.7.
60
+ Tested with Rails 7.1, 7, 6.1, 6 in Ruby 3.2.2.
61
+
62
+ For older versions, use version 1.5.2.
62
63
 
63
64
  ## License
64
65
 
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'rspec/core/rake_task'
2
4
  require 'bundler/gem_tasks'
3
5
 
@@ -1,5 +1,6 @@
1
- # -*- encoding: utf-8 -*-
2
- $LOAD_PATH.push File.expand_path('../lib', __FILE__)
1
+ # frozen_string_literal: true
2
+
3
+ $LOAD_PATH.push File.expand_path('lib', __dir__)
3
4
  require 'auto_increment/version'
4
5
 
5
6
  Gem::Specification.new do |s|
@@ -10,28 +11,27 @@ Gem::Specification.new do |s|
10
11
  s.authors = ['Felipe Diesel']
11
12
  s.email = ['diesel@hey.com']
12
13
  s.homepage = 'http://github.com/felipediesel/auto_increment'
13
- s.summary = 'Auto increment a string or integer field'
14
- s.description = 'Automaticaly increments a string or integer field ' \
15
- 'in ActiveRecord.'
14
+ s.summary = 'Auto increment a string or integer column'
15
+ s.description = 'Automaticaly increments an ActiveRecord column'
16
16
 
17
17
  s.files = `git ls-files`.split("\n")
18
18
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
19
  s.require_paths = ['lib']
20
20
 
21
- s.add_dependency 'activerecord', '>= 4.0'
22
- s.add_dependency 'activesupport', '>= 4.0'
21
+ s.add_dependency 'activerecord', '>= 6.0'
22
+ s.add_dependency 'activesupport', '>= 6.0'
23
23
 
24
24
  s.add_development_dependency 'bundler'
25
25
  s.add_development_dependency 'rake'
26
26
 
27
- s.add_development_dependency 'rspec'
28
- s.add_development_dependency 'rspec-nc'
27
+ s.add_development_dependency 'appraisal'
28
+ s.add_development_dependency 'database_cleaner'
29
+ s.add_development_dependency 'fuubar'
29
30
  s.add_development_dependency 'guard'
30
31
  s.add_development_dependency 'guard-rspec'
31
- s.add_development_dependency 'fuubar'
32
- s.add_development_dependency 'coveralls'
33
- s.add_development_dependency 'database_cleaner'
34
- s.add_development_dependency 'appraisal'
32
+ s.add_development_dependency 'rspec'
33
+ s.add_development_dependency 'rspec-nc'
34
+ s.add_development_dependency 'rubocop'
35
35
 
36
36
  s.add_development_dependency 'sqlite3', '>= 1.3.13'
37
37
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "activerecord", "6.0.3.4"
6
- gem "activesupport", "6.0.3.4"
5
+ gem "activerecord", "6.0.6.1"
6
+ gem "activesupport", "6.0.6.1"
7
7
 
8
8
  gemspec path: "../"
@@ -0,0 +1,144 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ auto_increment (1.5.2)
5
+ activerecord (>= 6.0)
6
+ activesupport (>= 6.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ activemodel (6.0.6.1)
12
+ activesupport (= 6.0.6.1)
13
+ activerecord (6.0.6.1)
14
+ activemodel (= 6.0.6.1)
15
+ activesupport (= 6.0.6.1)
16
+ activesupport (6.0.6.1)
17
+ concurrent-ruby (~> 1.0, >= 1.0.2)
18
+ i18n (>= 0.7, < 2)
19
+ minitest (~> 5.1)
20
+ tzinfo (~> 1.1)
21
+ zeitwerk (~> 2.2, >= 2.2.2)
22
+ appraisal (2.5.0)
23
+ bundler
24
+ rake
25
+ thor (>= 0.14.0)
26
+ ast (2.4.2)
27
+ coderay (1.1.3)
28
+ concurrent-ruby (1.2.2)
29
+ database_cleaner (2.0.2)
30
+ database_cleaner-active_record (>= 2, < 3)
31
+ database_cleaner-active_record (2.1.0)
32
+ activerecord (>= 5.a)
33
+ database_cleaner-core (~> 2.0.0)
34
+ database_cleaner-core (2.0.1)
35
+ diff-lcs (1.5.0)
36
+ ffi (1.16.3)
37
+ formatador (1.1.0)
38
+ fuubar (2.5.1)
39
+ rspec-core (~> 3.0)
40
+ ruby-progressbar (~> 1.4)
41
+ guard (2.18.1)
42
+ formatador (>= 0.2.4)
43
+ listen (>= 2.7, < 4.0)
44
+ lumberjack (>= 1.0.12, < 2.0)
45
+ nenv (~> 0.1)
46
+ notiffany (~> 0.0)
47
+ pry (>= 0.13.0)
48
+ shellany (~> 0.0)
49
+ thor (>= 0.18.1)
50
+ guard-compat (1.2.1)
51
+ guard-rspec (4.7.3)
52
+ guard (~> 2.1)
53
+ guard-compat (~> 1.1)
54
+ rspec (>= 2.99.0, < 4.0)
55
+ i18n (1.14.1)
56
+ concurrent-ruby (~> 1.0)
57
+ json (2.7.1)
58
+ language_server-protocol (3.17.0.3)
59
+ listen (3.8.0)
60
+ rb-fsevent (~> 0.10, >= 0.10.3)
61
+ rb-inotify (~> 0.9, >= 0.9.10)
62
+ lumberjack (1.2.10)
63
+ method_source (1.0.0)
64
+ minitest (5.20.0)
65
+ nenv (0.3.0)
66
+ notiffany (0.1.3)
67
+ nenv (~> 0.1)
68
+ shellany (~> 0.0)
69
+ parallel (1.24.0)
70
+ parser (3.2.2.4)
71
+ ast (~> 2.4.1)
72
+ racc
73
+ pry (0.14.2)
74
+ coderay (~> 1.1)
75
+ method_source (~> 1.0)
76
+ racc (1.7.3)
77
+ rainbow (3.1.1)
78
+ rake (13.1.0)
79
+ rb-fsevent (0.11.2)
80
+ rb-inotify (0.10.1)
81
+ ffi (~> 1.0)
82
+ regexp_parser (2.8.3)
83
+ rexml (3.2.6)
84
+ rspec (3.12.0)
85
+ rspec-core (~> 3.12.0)
86
+ rspec-expectations (~> 3.12.0)
87
+ rspec-mocks (~> 3.12.0)
88
+ rspec-core (3.12.2)
89
+ rspec-support (~> 3.12.0)
90
+ rspec-expectations (3.12.3)
91
+ diff-lcs (>= 1.2.0, < 2.0)
92
+ rspec-support (~> 3.12.0)
93
+ rspec-mocks (3.12.6)
94
+ diff-lcs (>= 1.2.0, < 2.0)
95
+ rspec-support (~> 3.12.0)
96
+ rspec-nc (0.3.0)
97
+ rspec (>= 3)
98
+ terminal-notifier (>= 1.4)
99
+ rspec-support (3.12.1)
100
+ rubocop (1.59.0)
101
+ json (~> 2.3)
102
+ language_server-protocol (>= 3.17.0)
103
+ parallel (~> 1.10)
104
+ parser (>= 3.2.2.4)
105
+ rainbow (>= 2.2.2, < 4.0)
106
+ regexp_parser (>= 1.8, < 3.0)
107
+ rexml (>= 3.2.5, < 4.0)
108
+ rubocop-ast (>= 1.30.0, < 2.0)
109
+ ruby-progressbar (~> 1.7)
110
+ unicode-display_width (>= 2.4.0, < 3.0)
111
+ rubocop-ast (1.30.0)
112
+ parser (>= 3.2.1.0)
113
+ ruby-progressbar (1.13.0)
114
+ shellany (0.0.1)
115
+ sqlite3 (1.4.2)
116
+ terminal-notifier (2.0.0)
117
+ thor (1.3.0)
118
+ thread_safe (0.3.6)
119
+ tzinfo (1.2.11)
120
+ thread_safe (~> 0.1)
121
+ unicode-display_width (2.5.0)
122
+ zeitwerk (2.6.12)
123
+
124
+ PLATFORMS
125
+ arm64-darwin-23
126
+
127
+ DEPENDENCIES
128
+ activerecord (= 6.0.6.1)
129
+ activesupport (= 6.0.6.1)
130
+ appraisal
131
+ auto_increment!
132
+ bundler
133
+ database_cleaner
134
+ fuubar
135
+ guard
136
+ guard-rspec
137
+ rake
138
+ rspec
139
+ rspec-nc
140
+ rubocop
141
+ sqlite3 (>= 1.3.13)
142
+
143
+ BUNDLED WITH
144
+ 2.4.22
@@ -2,8 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "activerecord", "5.0.7.2"
6
- gem "activesupport", "5.0.7.2"
7
- gem "sqlite3", "1.3.13"
5
+ gem "activerecord", "6.1.7.6"
6
+ gem "activesupport", "6.1.7.6"
8
7
 
9
8
  gemspec path: "../"