temporal_tables 2.0.0 → 3.0.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: 457aecc9f2b96e0a7ef98f6e7e2d4c30fc0aa091ddeb3abc9a3c684cae67768c
4
- data.tar.gz: 1bf1f9bd6e98b063b73c3bdafb9f5d31bba6e75a2e605838c466915c85231317
3
+ metadata.gz: 3ce2b662e846d6d42ccb774dc89abd731e3f7d43ca77f94347df8312df0fb543
4
+ data.tar.gz: 25fd0c42c5e37dd35c0a2abbcaff994b6e1d54eefaa04a6e579a01260885cec3
5
5
  SHA512:
6
- metadata.gz: 9b9baeefc81aadfe5f23db7fc5790321cf2550812a6818a9b3d2d3f96af4f12efb8672bea34e9b7981f6e577c9c43574378d72894684a866c762aaf94d17d5f2
7
- data.tar.gz: 9ae4da3db11583308195eca7c1965c0a91242ab61711794bb8b0f3264e25df39b2453a6dcafd3ae7dad119f7f5d31d3a5d681b18bd711422c12d0965e8b184fb
6
+ metadata.gz: 53b4b4680d68cf772b3d38430f93ce340226740747ea8825a87a1fe9953b24c26135ed2cbfb3ae840d608992a7bb4cf169ff07d6fc980744fb683153912ef2ca
7
+ data.tar.gz: 9a1558d7ab3c79973314f1f7c74498d77ba901e3d608415028bdee79c618b77ad25e5f39f0f62a4ce249e2ef53b007461eeaa54a506da3cbf625999fe6d02903
@@ -4,6 +4,11 @@ on:
4
4
  push:
5
5
  branches:
6
6
  - '**'
7
+ tags:
8
+ - "v*.*.*"
9
+ pull_request:
10
+ branches:
11
+ - master
7
12
 
8
13
  jobs:
9
14
  tests:
@@ -24,18 +29,16 @@ jobs:
24
29
  strategy:
25
30
  fail-fast: false
26
31
  matrix:
27
- ruby: ["2.5", "2.6", "2.7", "3.0", "3.1"]
28
- rails: ["6.0", "6.1", "7.0"]
29
- db: ["pg", "mysql"]
30
- exclude:
31
- - ruby: 2.5
32
- rails: 7.0
33
- - ruby: 2.6
34
- rails: 7.0
35
- - ruby: 3.1
36
- rails: 7.0
32
+ ruby: ["3.0.6", "3.1.4", "3.2.2"]
33
+ gemfile:
34
+ - "gemfiles/Gemfile.6.1.mysql"
35
+ - "gemfiles/Gemfile.6.1.pg"
36
+ - "gemfiles/Gemfile.7.0.mysql"
37
+ - "gemfiles/Gemfile.7.0.pg"
38
+ - "gemfiles/Gemfile.7.1.mysql"
39
+ - "gemfiles/Gemfile.7.1.pg"
37
40
  env:
38
- BUNDLE_GEMFILE: ${{github.workspace}}/gemfiles/Gemfile.${{matrix.rails}}.${{ matrix.db }}
41
+ BUNDLE_GEMFILE: ${{github.workspace}}/${{matrix.gemfile }}
39
42
  steps:
40
43
  - uses: actions/checkout@v2
41
44
  - uses: ruby/setup-ruby@v1
@@ -43,11 +46,31 @@ jobs:
43
46
  ruby-version: "${{ matrix.ruby }}"
44
47
  - name: Bundle
45
48
  run: |
46
- gem install bundler:2.2.15
49
+ gem install bundler:2.4.10
47
50
  bundle install
48
51
 
52
+ - name: Run Rubocop
53
+ run: bundle exec rubocop
54
+
49
55
  - name: Run Tests
50
56
  env:
51
57
  PGHOST: localhost
52
58
  PGUSER: postgres
53
59
  run: bundle exec rspec
60
+
61
+ publish:
62
+ needs: [tests]
63
+ runs-on: ubuntu-latest
64
+ if: startsWith(github.ref, 'refs/tags/v')
65
+
66
+ permissions:
67
+ contents: write
68
+ id-token: write
69
+
70
+ steps:
71
+ - uses: actions/checkout@v2
72
+ - uses: ruby/setup-ruby@v1
73
+ with:
74
+ ruby-version: "3.2.2"
75
+ bundler-cache: true
76
+ - uses: rubygems/release-gem@v1
data/.rubocop.yml CHANGED
@@ -1,158 +1,42 @@
1
1
  require:
2
2
  - rubocop-rails
3
+ - rubocop-rspec
3
4
 
4
5
  AllCops:
5
- TargetRubyVersion: 2.5
6
- Gemspec/DateAssignment: # new in 1.10
7
- Enabled: true
8
- Gemspec/RequireMFA: # new in 1.23
9
- Enabled: true
10
- Layout/LineEndStringConcatenationIndentation: # new in 1.18
11
- Enabled: true
12
- Layout/SpaceBeforeBrackets: # new in 1.7
13
- Enabled: true
14
- Lint/AmbiguousAssignment: # new in 1.7
15
- Enabled: true
16
- Lint/AmbiguousOperatorPrecedence: # new in 1.21
17
- Enabled: true
18
- Lint/AmbiguousRange: # new in 1.19
19
- Enabled: true
20
- Lint/DeprecatedConstants: # new in 1.8
21
- Enabled: true
22
- Lint/DuplicateBranch: # new in 1.3
23
- Enabled: true
24
- Lint/DuplicateRegexpCharacterClassElement: # new in 1.1
25
- Enabled: true
26
- Lint/EmptyBlock: # new in 1.1
27
- Enabled: true
28
- Lint/EmptyClass: # new in 1.3
29
- Enabled: true
30
- Lint/EmptyInPattern: # new in 1.16
31
- Enabled: true
32
- Lint/IncompatibleIoSelectWithFiberScheduler: # new in 1.21
33
- Enabled: true
34
- Lint/LambdaWithoutLiteralBlock: # new in 1.8
35
- Enabled: true
36
- Lint/NoReturnInBeginEndBlocks: # new in 1.2
37
- Enabled: true
38
- Lint/NumberedParameterAssignment: # new in 1.9
39
- Enabled: true
40
- Lint/OrAssignmentToConstant: # new in 1.9
41
- Enabled: true
42
- Lint/RedundantDirGlobSort: # new in 1.8
43
- Enabled: true
44
- Lint/RequireRelativeSelfPath: # new in 1.22
45
- Enabled: true
46
- Lint/SymbolConversion: # new in 1.9
47
- Enabled: true
48
- Lint/ToEnumArguments: # new in 1.1
49
- Enabled: true
50
- Lint/TripleQuotes: # new in 1.9
51
- Enabled: true
52
- Lint/UnexpectedBlockArity: # new in 1.5
53
- Enabled: true
54
- Lint/UnmodifiedReduceAccumulator: # new in 1.1
55
- Enabled: true
56
- Lint/UselessRuby2Keywords: # new in 1.23
57
- Enabled: true
58
- Naming/BlockForwarding: # new in 1.24
59
- Enabled: true
60
- Metrics/BlockLength:
6
+ TargetRubyVersion: 3.2
7
+ NewCops: disable
8
+
9
+ Gemspec/RequiredRubyVersion:
61
10
  Exclude:
62
- - 'spec/**/*.rb'
63
- Security/IoMethods: # new in 1.22
64
- Enabled: true
65
- Style/ArgumentsForwarding: # new in 1.1
66
- Enabled: true
67
- Style/CollectionCompact: # new in 1.2
68
- Enabled: true
69
- Style/Documentation:
11
+ - 'temporal_tables.gemspec'
12
+
13
+ Rails/ApplicationRecord:
70
14
  Enabled: false
71
- Style/DocumentDynamicEvalDefinition: # new in 1.1
72
- Enabled: true
73
- Style/EndlessMethod: # new in 1.8
74
- Enabled: true
75
- Style/FileRead: # new in 1.24
76
- Enabled: true
77
- Style/FileWrite: # new in 1.24
78
- Enabled: true
79
- Style/FormatStringToken:
15
+
16
+ RSpec/DescribedClass:
80
17
  Enabled: false
81
- Style/HashConversion: # new in 1.10
82
- Enabled: true
83
- Style/HashExcept: # new in 1.7
84
- Enabled: true
85
- Style/IfWithBooleanLiteralBranches: # new in 1.9
86
- Enabled: true
87
- Style/InPatternThen: # new in 1.16
88
- Enabled: true
89
- Style/MapToHash: # new in 1.24
90
- Enabled: true
91
- Style/MultilineBlockChain:
18
+ RSpec/ExampleLength:
92
19
  Enabled: false
93
- Style/MultilineInPatternThen: # new in 1.16
94
- Enabled: true
95
- Style/NegatedIfElseCondition: # new in 1.2
96
- Enabled: true
97
- Style/NilLambda: # new in 1.3
98
- Enabled: true
99
- Style/NumberedParameters: # new in 1.22
100
- Enabled: true
101
- Style/NumberedParametersLimit: # new in 1.22
102
- Enabled: true
103
- Style/OpenStructUse: # new in 1.23
104
- Enabled: true
105
- Style/QuotedSymbols: # new in 1.16
106
- Enabled: true
107
- Style/RedundantArgument: # new in 1.4
108
- Enabled: true
109
- Style/RedundantSelfAssignmentBranch: # new in 1.19
110
- Enabled: true
111
- Style/SelectByRegexp: # new in 1.22
112
- Enabled: true
113
- Style/StringChars: # new in 1.12
114
- Enabled: true
115
- Style/SwapValues: # new in 1.1
116
- Enabled: true
117
- Style/SymbolArray:
20
+ RSpec/ExampleWording:
21
+ Enabled: false
22
+ RSpec/InstanceVariable:
23
+ Exclude:
24
+ - spec/basic_history_spec.rb
25
+ RSpec/MultipleDescribes:
26
+ Exclude:
27
+ - spec/basic_history_spec.rb
28
+ RSpec/MultipleExpectations:
118
29
  Enabled: false
119
- Naming/VariableNumber:
30
+ RSpec/MultipleMemoizedHelpers:
120
31
  Enabled: false
121
- Style/WordArray:
32
+ RSpec/NestedGroups:
122
33
  Enabled: false
123
- Rails/ActiveRecordCallbacksOrder: # new in 2.7
124
- Enabled: true
125
- Rails/AfterCommitOverride: # new in 2.8
126
- Enabled: true
127
- Rails/AttributeDefaultBlockValue: # new in 2.9
128
- Enabled: true
129
- Rails/FindById: # new in 2.7
130
- Enabled: true
131
- Rails/Inquiry: # new in 2.7
132
- Enabled: true
133
- Rails/MailerName: # new in 2.7
134
- Enabled: true
135
- Rails/MatchRoute: # new in 2.7
136
- Enabled: true
137
- Rails/NegateInclude: # new in 2.7
138
- Enabled: true
139
- Rails/Pluck: # new in 2.7
140
- Enabled: true
141
- Rails/ApplicationRecord:
34
+
35
+ Style/ClassAndModuleChildren:
36
+ Enabled: false
37
+ Style/Documentation:
38
+ Enabled: false
39
+ Style/HashSyntax:
40
+ EnforcedShorthandSyntax: never
41
+ Style/SymbolArray:
142
42
  Enabled: false
143
- Rails/PluckInWhere: # new in 2.7
144
- Enabled: true
145
- Rails/RenderInline: # new in 2.7
146
- Enabled: true
147
- Rails/RenderPlainText: # new in 2.7
148
- Enabled: true
149
- Rails/ShortI18n: # new in 2.7
150
- Enabled: true
151
- Rails/SquishedSQLHeredocs: # new in 2.8
152
- Enabled: true
153
- Rails/WhereEquals: # new in 2.9
154
- Enabled: true
155
- Rails/WhereExists: # new in 2.7
156
- Enabled: true
157
- Rails/WhereNot: # new in 2.8
158
- Enabled: true
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.0.0
1
+ 3.2.2
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- [![Actions Status](https://github.com/bkroeker/temporal_tables/workflows/Continuous%20Integration/badge.svg?branch=master)](https://github.com/bkroeker/temporal_tables/actions)
1
+ [![Continuous Integration](https://github.com/bkroeker/temporal_tables/actions/workflows/test.yml/badge.svg)](https://github.com/bkroeker/temporal_tables/actions/workflows/test.yml)
2
2
 
3
3
  # TemporalTables
4
4
 
@@ -11,6 +11,9 @@ gem 'byebug'
11
11
  gem 'database_cleaner'
12
12
  gem 'combustion'
13
13
  gem 'gemika'
14
+ gem 'rubocop'
15
+ gem 'rubocop-rails'
16
+ gem 'rubocop-rspec'
14
17
 
15
18
  # Gem under test
16
19
  gem 'temporal_tables', :path => '..'
@@ -1,78 +1,79 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- temporal_tables (1.0.3)
5
- rails (>= 6.0, < 7.1)
4
+ temporal_tables (3.0.0)
5
+ rails (>= 6.0, < 7.2)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- actioncable (6.1.4.4)
11
- actionpack (= 6.1.4.4)
12
- activesupport (= 6.1.4.4)
10
+ actioncable (6.1.7.6)
11
+ actionpack (= 6.1.7.6)
12
+ activesupport (= 6.1.7.6)
13
13
  nio4r (~> 2.0)
14
14
  websocket-driver (>= 0.6.1)
15
- actionmailbox (6.1.4.4)
16
- actionpack (= 6.1.4.4)
17
- activejob (= 6.1.4.4)
18
- activerecord (= 6.1.4.4)
19
- activestorage (= 6.1.4.4)
20
- activesupport (= 6.1.4.4)
15
+ actionmailbox (6.1.7.6)
16
+ actionpack (= 6.1.7.6)
17
+ activejob (= 6.1.7.6)
18
+ activerecord (= 6.1.7.6)
19
+ activestorage (= 6.1.7.6)
20
+ activesupport (= 6.1.7.6)
21
21
  mail (>= 2.7.1)
22
- actionmailer (6.1.4.4)
23
- actionpack (= 6.1.4.4)
24
- actionview (= 6.1.4.4)
25
- activejob (= 6.1.4.4)
26
- activesupport (= 6.1.4.4)
22
+ actionmailer (6.1.7.6)
23
+ actionpack (= 6.1.7.6)
24
+ actionview (= 6.1.7.6)
25
+ activejob (= 6.1.7.6)
26
+ activesupport (= 6.1.7.6)
27
27
  mail (~> 2.5, >= 2.5.4)
28
28
  rails-dom-testing (~> 2.0)
29
- actionpack (6.1.4.4)
30
- actionview (= 6.1.4.4)
31
- activesupport (= 6.1.4.4)
29
+ actionpack (6.1.7.6)
30
+ actionview (= 6.1.7.6)
31
+ activesupport (= 6.1.7.6)
32
32
  rack (~> 2.0, >= 2.0.9)
33
33
  rack-test (>= 0.6.3)
34
34
  rails-dom-testing (~> 2.0)
35
35
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
36
- actiontext (6.1.4.4)
37
- actionpack (= 6.1.4.4)
38
- activerecord (= 6.1.4.4)
39
- activestorage (= 6.1.4.4)
40
- activesupport (= 6.1.4.4)
36
+ actiontext (6.1.7.6)
37
+ actionpack (= 6.1.7.6)
38
+ activerecord (= 6.1.7.6)
39
+ activestorage (= 6.1.7.6)
40
+ activesupport (= 6.1.7.6)
41
41
  nokogiri (>= 1.8.5)
42
- actionview (6.1.4.4)
43
- activesupport (= 6.1.4.4)
42
+ actionview (6.1.7.6)
43
+ activesupport (= 6.1.7.6)
44
44
  builder (~> 3.1)
45
45
  erubi (~> 1.4)
46
46
  rails-dom-testing (~> 2.0)
47
47
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
48
- activejob (6.1.4.4)
49
- activesupport (= 6.1.4.4)
48
+ activejob (6.1.7.6)
49
+ activesupport (= 6.1.7.6)
50
50
  globalid (>= 0.3.6)
51
- activemodel (6.1.4.4)
52
- activesupport (= 6.1.4.4)
53
- activerecord (6.1.4.4)
54
- activemodel (= 6.1.4.4)
55
- activesupport (= 6.1.4.4)
56
- activestorage (6.1.4.4)
57
- actionpack (= 6.1.4.4)
58
- activejob (= 6.1.4.4)
59
- activerecord (= 6.1.4.4)
60
- activesupport (= 6.1.4.4)
61
- marcel (~> 1.0.0)
51
+ activemodel (6.1.7.6)
52
+ activesupport (= 6.1.7.6)
53
+ activerecord (6.1.7.6)
54
+ activemodel (= 6.1.7.6)
55
+ activesupport (= 6.1.7.6)
56
+ activestorage (6.1.7.6)
57
+ actionpack (= 6.1.7.6)
58
+ activejob (= 6.1.7.6)
59
+ activerecord (= 6.1.7.6)
60
+ activesupport (= 6.1.7.6)
61
+ marcel (~> 1.0)
62
62
  mini_mime (>= 1.1.0)
63
- activesupport (6.1.4.4)
63
+ activesupport (6.1.7.6)
64
64
  concurrent-ruby (~> 1.0, >= 1.0.2)
65
65
  i18n (>= 1.6, < 2)
66
66
  minitest (>= 5.1)
67
67
  tzinfo (~> 2.0)
68
68
  zeitwerk (~> 2.3)
69
+ ast (2.4.2)
69
70
  builder (3.2.4)
70
71
  byebug (11.1.3)
71
- combustion (1.3.5)
72
+ combustion (1.3.7)
72
73
  activesupport (>= 3.0.0)
73
74
  railties (>= 3.0.0)
74
75
  thor (>= 0.14.6)
75
- concurrent-ruby (1.1.9)
76
+ concurrent-ruby (1.2.2)
76
77
  crass (1.0.6)
77
78
  database_cleaner (2.0.1)
78
79
  database_cleaner-active_record (~> 2.0.0)
@@ -80,59 +81,85 @@ GEM
80
81
  activerecord (>= 5.a)
81
82
  database_cleaner-core (~> 2.0.0)
82
83
  database_cleaner-core (2.0.1)
84
+ date (3.3.4)
83
85
  diff-lcs (1.5.0)
84
- erubi (1.10.0)
85
- gemika (0.6.1)
86
- globalid (1.0.0)
87
- activesupport (>= 5.0)
88
- i18n (1.8.11)
86
+ erubi (1.12.0)
87
+ gemika (0.8.2)
88
+ globalid (1.2.1)
89
+ activesupport (>= 6.1)
90
+ i18n (1.14.1)
89
91
  concurrent-ruby (~> 1.0)
90
- loofah (2.13.0)
92
+ json (2.7.1)
93
+ language_server-protocol (3.17.0.3)
94
+ loofah (2.22.0)
91
95
  crass (~> 1.0.2)
92
- nokogiri (>= 1.5.9)
93
- mail (2.7.1)
96
+ nokogiri (>= 1.12.0)
97
+ mail (2.8.1)
94
98
  mini_mime (>= 0.1.1)
99
+ net-imap
100
+ net-pop
101
+ net-smtp
95
102
  marcel (1.0.2)
96
103
  method_source (1.0.0)
97
- mini_mime (1.1.2)
98
- minitest (5.15.0)
104
+ mini_mime (1.1.5)
105
+ minitest (5.20.0)
99
106
  mysql2 (0.5.3)
100
- nio4r (2.5.8)
101
- nokogiri (1.12.5-arm64-darwin)
107
+ net-imap (0.4.9)
108
+ date
109
+ net-protocol
110
+ net-pop (0.1.2)
111
+ net-protocol
112
+ net-protocol (0.2.2)
113
+ timeout
114
+ net-smtp (0.4.0)
115
+ net-protocol
116
+ nio4r (2.7.0)
117
+ nokogiri (1.16.0-arm64-darwin)
102
118
  racc (~> 1.4)
103
- nokogiri (1.12.5-x86_64-darwin)
119
+ nokogiri (1.16.0-x86_64-darwin)
104
120
  racc (~> 1.4)
105
- racc (1.6.0)
106
- rack (2.2.3)
107
- rack-test (1.1.0)
108
- rack (>= 1.0, < 3)
109
- rails (6.1.4.4)
110
- actioncable (= 6.1.4.4)
111
- actionmailbox (= 6.1.4.4)
112
- actionmailer (= 6.1.4.4)
113
- actionpack (= 6.1.4.4)
114
- actiontext (= 6.1.4.4)
115
- actionview (= 6.1.4.4)
116
- activejob (= 6.1.4.4)
117
- activemodel (= 6.1.4.4)
118
- activerecord (= 6.1.4.4)
119
- activestorage (= 6.1.4.4)
120
- activesupport (= 6.1.4.4)
121
+ nokogiri (1.16.0-x86_64-linux)
122
+ racc (~> 1.4)
123
+ parallel (1.24.0)
124
+ parser (3.3.0.0)
125
+ ast (~> 2.4.1)
126
+ racc
127
+ racc (1.7.3)
128
+ rack (2.2.8)
129
+ rack-test (2.1.0)
130
+ rack (>= 1.3)
131
+ rails (6.1.7.6)
132
+ actioncable (= 6.1.7.6)
133
+ actionmailbox (= 6.1.7.6)
134
+ actionmailer (= 6.1.7.6)
135
+ actionpack (= 6.1.7.6)
136
+ actiontext (= 6.1.7.6)
137
+ actionview (= 6.1.7.6)
138
+ activejob (= 6.1.7.6)
139
+ activemodel (= 6.1.7.6)
140
+ activerecord (= 6.1.7.6)
141
+ activestorage (= 6.1.7.6)
142
+ activesupport (= 6.1.7.6)
121
143
  bundler (>= 1.15.0)
122
- railties (= 6.1.4.4)
144
+ railties (= 6.1.7.6)
123
145
  sprockets-rails (>= 2.0.0)
124
- rails-dom-testing (2.0.3)
125
- activesupport (>= 4.2.0)
146
+ rails-dom-testing (2.2.0)
147
+ activesupport (>= 5.0.0)
148
+ minitest
126
149
  nokogiri (>= 1.6)
127
- rails-html-sanitizer (1.4.2)
128
- loofah (~> 2.3)
129
- railties (6.1.4.4)
130
- actionpack (= 6.1.4.4)
131
- activesupport (= 6.1.4.4)
150
+ rails-html-sanitizer (1.6.0)
151
+ loofah (~> 2.21)
152
+ nokogiri (~> 1.14)
153
+ railties (6.1.7.6)
154
+ actionpack (= 6.1.7.6)
155
+ activesupport (= 6.1.7.6)
132
156
  method_source
133
- rake (>= 0.13)
157
+ rake (>= 12.2)
134
158
  thor (~> 1.0)
135
- rake (13.0.6)
159
+ rainbow (3.1.1)
160
+ rake (13.1.0)
161
+ regexp_parser (2.8.3)
162
+ rexml (3.2.6)
136
163
  rspec (3.10.0)
137
164
  rspec-core (~> 3.10.0)
138
165
  rspec-expectations (~> 3.10.0)
@@ -146,24 +173,54 @@ GEM
146
173
  diff-lcs (>= 1.2.0, < 2.0)
147
174
  rspec-support (~> 3.10.0)
148
175
  rspec-support (3.10.3)
149
- sprockets (4.0.2)
176
+ rubocop (1.59.0)
177
+ json (~> 2.3)
178
+ language_server-protocol (>= 3.17.0)
179
+ parallel (~> 1.10)
180
+ parser (>= 3.2.2.4)
181
+ rainbow (>= 2.2.2, < 4.0)
182
+ regexp_parser (>= 1.8, < 3.0)
183
+ rexml (>= 3.2.5, < 4.0)
184
+ rubocop-ast (>= 1.30.0, < 2.0)
185
+ ruby-progressbar (~> 1.7)
186
+ unicode-display_width (>= 2.4.0, < 3.0)
187
+ rubocop-ast (1.30.0)
188
+ parser (>= 3.2.1.0)
189
+ rubocop-capybara (2.20.0)
190
+ rubocop (~> 1.41)
191
+ rubocop-factory_bot (2.25.0)
192
+ rubocop (~> 1.33)
193
+ rubocop-rails (2.23.1)
194
+ activesupport (>= 4.2.0)
195
+ rack (>= 1.1)
196
+ rubocop (>= 1.33.0, < 2.0)
197
+ rubocop-ast (>= 1.30.0, < 2.0)
198
+ rubocop-rspec (2.26.1)
199
+ rubocop (~> 1.40)
200
+ rubocop-capybara (~> 2.17)
201
+ rubocop-factory_bot (~> 2.22)
202
+ ruby-progressbar (1.13.0)
203
+ sprockets (4.2.1)
150
204
  concurrent-ruby (~> 1.0)
151
- rack (> 1, < 3)
205
+ rack (>= 2.2.4, < 4)
152
206
  sprockets-rails (3.4.2)
153
207
  actionpack (>= 5.2)
154
208
  activesupport (>= 5.2)
155
209
  sprockets (>= 3.0.0)
156
- thor (1.1.0)
157
- tzinfo (2.0.4)
210
+ thor (1.3.0)
211
+ timeout (0.4.1)
212
+ tzinfo (2.0.6)
158
213
  concurrent-ruby (~> 1.0)
159
- websocket-driver (0.7.5)
214
+ unicode-display_width (2.5.0)
215
+ websocket-driver (0.7.6)
160
216
  websocket-extensions (>= 0.1.0)
161
217
  websocket-extensions (0.1.5)
162
- zeitwerk (2.5.3)
218
+ zeitwerk (2.6.12)
163
219
 
164
220
  PLATFORMS
165
221
  arm64-darwin-20
166
222
  x86_64-darwin-19
223
+ x86_64-linux
167
224
 
168
225
  DEPENDENCIES
169
226
  byebug
@@ -174,6 +231,9 @@ DEPENDENCIES
174
231
  rails (~> 6.1.0)
175
232
  rake
176
233
  rspec (~> 3.4)
234
+ rubocop
235
+ rubocop-rails
236
+ rubocop-rspec
177
237
  temporal_tables!
178
238
 
179
239
  BUNDLED WITH
@@ -11,6 +11,9 @@ gem 'byebug'
11
11
  gem 'database_cleaner'
12
12
  gem 'combustion'
13
13
  gem 'gemika'
14
+ gem 'rubocop'
15
+ gem 'rubocop-rails'
16
+ gem 'rubocop-rspec'
14
17
 
15
18
  # Gem under test
16
19
  gem 'temporal_tables', :path => '..'