temporal_tables 0.8.1 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/test.yml +53 -0
  3. data/.rubocop.yml +158 -0
  4. data/.ruby-version +1 -1
  5. data/.travis.yml +5 -5
  6. data/Gemfile +2 -0
  7. data/README.md +15 -5
  8. data/Rakefile +7 -2
  9. data/config.ru +2 -0
  10. data/gemfiles/Gemfile.6.0.mysql.lock +84 -84
  11. data/gemfiles/Gemfile.6.0.pg.lock +103 -98
  12. data/gemfiles/Gemfile.6.1.mysql.lock +180 -0
  13. data/gemfiles/Gemfile.6.1.pg.lock +180 -0
  14. data/gemfiles/{Gemfile.5.2.mysql → Gemfile.7.0.mysql} +2 -2
  15. data/gemfiles/Gemfile.7.0.mysql.lock +173 -0
  16. data/gemfiles/{Gemfile.5.2.pg → Gemfile.7.0.pg} +1 -1
  17. data/gemfiles/Gemfile.7.0.pg.lock +173 -0
  18. data/lib/temporal_tables/arel_table.rb +10 -9
  19. data/lib/temporal_tables/association_extensions.rb +2 -0
  20. data/lib/temporal_tables/connection_adapters/mysql_adapter.rb +5 -3
  21. data/lib/temporal_tables/connection_adapters/postgresql_adapter.rb +5 -3
  22. data/lib/temporal_tables/history_hook.rb +8 -5
  23. data/lib/temporal_tables/preloader_extensions.rb +2 -0
  24. data/lib/temporal_tables/reflection_extensions.rb +11 -14
  25. data/lib/temporal_tables/relation_extensions.rb +11 -24
  26. data/lib/temporal_tables/temporal_adapter.rb +77 -90
  27. data/lib/temporal_tables/temporal_class.rb +29 -28
  28. data/lib/temporal_tables/version.rb +3 -1
  29. data/lib/temporal_tables/whodunnit.rb +5 -3
  30. data/lib/temporal_tables.rb +42 -32
  31. data/spec/basic_history_spec.rb +52 -43
  32. data/spec/internal/app/models/broom.rb +2 -0
  33. data/spec/internal/app/models/cat.rb +3 -1
  34. data/spec/internal/app/models/cat_life.rb +2 -0
  35. data/spec/internal/app/models/coven.rb +2 -0
  36. data/spec/internal/app/models/flying_machine.rb +2 -0
  37. data/spec/internal/app/models/person.rb +2 -0
  38. data/spec/internal/app/models/rocket_broom.rb +2 -0
  39. data/spec/internal/app/models/wart.rb +3 -1
  40. data/spec/internal/config/database.ci.yml +12 -0
  41. data/spec/internal/db/schema.rb +8 -4
  42. data/spec/spec_helper.rb +39 -5
  43. data/spec/support/database.rb +10 -6
  44. data/temporal_tables.gemspec +31 -18
  45. metadata +103 -35
  46. data/.github/workflow/test.yml +0 -44
  47. data/gemfiles/Gemfile.5.1.mysql +0 -16
  48. data/gemfiles/Gemfile.5.1.mysql.lock +0 -147
  49. data/gemfiles/Gemfile.5.1.pg +0 -16
  50. data/gemfiles/Gemfile.5.1.pg.lock +0 -147
  51. data/gemfiles/Gemfile.5.2.mysql.lock +0 -155
  52. data/gemfiles/Gemfile.5.2.pg.lock +0 -155
  53. data/lib/temporal_tables/join_extensions.rb +0 -20
  54. data/spec/extensions/combustion.rb +0 -9
  55. data/spec/internal/config/routes.rb +0 -3
@@ -1,157 +1,162 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- temporal_tables (0.8.1)
5
- rails (>= 5.0, < 6.1)
4
+ temporal_tables (1.0.1)
5
+ rails (>= 6.0, < 7.1)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- actioncable (6.0.2.1)
11
- actionpack (= 6.0.2.1)
10
+ actioncable (6.0.4.4)
11
+ actionpack (= 6.0.4.4)
12
12
  nio4r (~> 2.0)
13
13
  websocket-driver (>= 0.6.1)
14
- actionmailbox (6.0.2.1)
15
- actionpack (= 6.0.2.1)
16
- activejob (= 6.0.2.1)
17
- activerecord (= 6.0.2.1)
18
- activestorage (= 6.0.2.1)
19
- activesupport (= 6.0.2.1)
14
+ actionmailbox (6.0.4.4)
15
+ actionpack (= 6.0.4.4)
16
+ activejob (= 6.0.4.4)
17
+ activerecord (= 6.0.4.4)
18
+ activestorage (= 6.0.4.4)
19
+ activesupport (= 6.0.4.4)
20
20
  mail (>= 2.7.1)
21
- actionmailer (6.0.2.1)
22
- actionpack (= 6.0.2.1)
23
- actionview (= 6.0.2.1)
24
- activejob (= 6.0.2.1)
21
+ actionmailer (6.0.4.4)
22
+ actionpack (= 6.0.4.4)
23
+ actionview (= 6.0.4.4)
24
+ activejob (= 6.0.4.4)
25
25
  mail (~> 2.5, >= 2.5.4)
26
26
  rails-dom-testing (~> 2.0)
27
- actionpack (6.0.2.1)
28
- actionview (= 6.0.2.1)
29
- activesupport (= 6.0.2.1)
27
+ actionpack (6.0.4.4)
28
+ actionview (= 6.0.4.4)
29
+ activesupport (= 6.0.4.4)
30
30
  rack (~> 2.0, >= 2.0.8)
31
31
  rack-test (>= 0.6.3)
32
32
  rails-dom-testing (~> 2.0)
33
33
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
34
- actiontext (6.0.2.1)
35
- actionpack (= 6.0.2.1)
36
- activerecord (= 6.0.2.1)
37
- activestorage (= 6.0.2.1)
38
- activesupport (= 6.0.2.1)
34
+ actiontext (6.0.4.4)
35
+ actionpack (= 6.0.4.4)
36
+ activerecord (= 6.0.4.4)
37
+ activestorage (= 6.0.4.4)
38
+ activesupport (= 6.0.4.4)
39
39
  nokogiri (>= 1.8.5)
40
- actionview (6.0.2.1)
41
- activesupport (= 6.0.2.1)
40
+ actionview (6.0.4.4)
41
+ activesupport (= 6.0.4.4)
42
42
  builder (~> 3.1)
43
43
  erubi (~> 1.4)
44
44
  rails-dom-testing (~> 2.0)
45
45
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
46
- activejob (6.0.2.1)
47
- activesupport (= 6.0.2.1)
46
+ activejob (6.0.4.4)
47
+ activesupport (= 6.0.4.4)
48
48
  globalid (>= 0.3.6)
49
- activemodel (6.0.2.1)
50
- activesupport (= 6.0.2.1)
51
- activerecord (6.0.2.1)
52
- activemodel (= 6.0.2.1)
53
- activesupport (= 6.0.2.1)
54
- activestorage (6.0.2.1)
55
- actionpack (= 6.0.2.1)
56
- activejob (= 6.0.2.1)
57
- activerecord (= 6.0.2.1)
58
- marcel (~> 0.3.1)
59
- activesupport (6.0.2.1)
49
+ activemodel (6.0.4.4)
50
+ activesupport (= 6.0.4.4)
51
+ activerecord (6.0.4.4)
52
+ activemodel (= 6.0.4.4)
53
+ activesupport (= 6.0.4.4)
54
+ activestorage (6.0.4.4)
55
+ actionpack (= 6.0.4.4)
56
+ activejob (= 6.0.4.4)
57
+ activerecord (= 6.0.4.4)
58
+ marcel (~> 1.0.0)
59
+ activesupport (6.0.4.4)
60
60
  concurrent-ruby (~> 1.0, >= 1.0.2)
61
61
  i18n (>= 0.7, < 2)
62
62
  minitest (~> 5.1)
63
63
  tzinfo (~> 1.1)
64
- zeitwerk (~> 2.2)
64
+ zeitwerk (~> 2.2, >= 2.2.2)
65
65
  builder (3.2.4)
66
- byebug (11.1.1)
67
- combustion (1.1.2)
66
+ byebug (11.1.3)
67
+ combustion (1.3.5)
68
68
  activesupport (>= 3.0.0)
69
69
  railties (>= 3.0.0)
70
70
  thor (>= 0.14.6)
71
- concurrent-ruby (1.1.6)
71
+ concurrent-ruby (1.1.9)
72
72
  crass (1.0.6)
73
- database_cleaner (1.8.3)
74
- diff-lcs (1.3)
75
- erubi (1.9.0)
76
- gemika (0.4.0)
77
- globalid (0.4.2)
78
- activesupport (>= 4.2.0)
79
- i18n (1.8.2)
73
+ database_cleaner (2.0.1)
74
+ database_cleaner-active_record (~> 2.0.0)
75
+ database_cleaner-active_record (2.0.1)
76
+ activerecord (>= 5.a)
77
+ database_cleaner-core (~> 2.0.0)
78
+ database_cleaner-core (2.0.1)
79
+ diff-lcs (1.5.0)
80
+ erubi (1.10.0)
81
+ gemika (0.6.1)
82
+ globalid (1.0.0)
83
+ activesupport (>= 5.0)
84
+ i18n (1.8.11)
80
85
  concurrent-ruby (~> 1.0)
81
- loofah (2.4.0)
86
+ loofah (2.13.0)
82
87
  crass (~> 1.0.2)
83
88
  nokogiri (>= 1.5.9)
84
89
  mail (2.7.1)
85
90
  mini_mime (>= 0.1.1)
86
- marcel (0.3.3)
87
- mimemagic (~> 0.3.2)
91
+ marcel (1.0.2)
88
92
  method_source (1.0.0)
89
- mimemagic (0.3.4)
90
- mini_mime (1.0.2)
91
- mini_portile2 (2.4.0)
92
- minitest (5.14.0)
93
- nio4r (2.5.2)
94
- nokogiri (1.10.9)
95
- mini_portile2 (~> 2.4.0)
93
+ mini_mime (1.1.2)
94
+ mini_portile2 (2.6.1)
95
+ minitest (5.15.0)
96
+ nio4r (2.5.8)
97
+ nokogiri (1.12.5)
98
+ mini_portile2 (~> 2.6.1)
99
+ racc (~> 1.4)
96
100
  pg (1.2.3)
97
- rack (2.2.2)
101
+ racc (1.6.0)
102
+ rack (2.2.3)
98
103
  rack-test (1.1.0)
99
104
  rack (>= 1.0, < 3)
100
- rails (6.0.2.1)
101
- actioncable (= 6.0.2.1)
102
- actionmailbox (= 6.0.2.1)
103
- actionmailer (= 6.0.2.1)
104
- actionpack (= 6.0.2.1)
105
- actiontext (= 6.0.2.1)
106
- actionview (= 6.0.2.1)
107
- activejob (= 6.0.2.1)
108
- activemodel (= 6.0.2.1)
109
- activerecord (= 6.0.2.1)
110
- activestorage (= 6.0.2.1)
111
- activesupport (= 6.0.2.1)
105
+ rails (6.0.4.4)
106
+ actioncable (= 6.0.4.4)
107
+ actionmailbox (= 6.0.4.4)
108
+ actionmailer (= 6.0.4.4)
109
+ actionpack (= 6.0.4.4)
110
+ actiontext (= 6.0.4.4)
111
+ actionview (= 6.0.4.4)
112
+ activejob (= 6.0.4.4)
113
+ activemodel (= 6.0.4.4)
114
+ activerecord (= 6.0.4.4)
115
+ activestorage (= 6.0.4.4)
116
+ activesupport (= 6.0.4.4)
112
117
  bundler (>= 1.3.0)
113
- railties (= 6.0.2.1)
118
+ railties (= 6.0.4.4)
114
119
  sprockets-rails (>= 2.0.0)
115
120
  rails-dom-testing (2.0.3)
116
121
  activesupport (>= 4.2.0)
117
122
  nokogiri (>= 1.6)
118
- rails-html-sanitizer (1.3.0)
123
+ rails-html-sanitizer (1.4.2)
119
124
  loofah (~> 2.3)
120
- railties (6.0.2.1)
121
- actionpack (= 6.0.2.1)
122
- activesupport (= 6.0.2.1)
125
+ railties (6.0.4.4)
126
+ actionpack (= 6.0.4.4)
127
+ activesupport (= 6.0.4.4)
123
128
  method_source
124
129
  rake (>= 0.8.7)
125
130
  thor (>= 0.20.3, < 2.0)
126
- rake (13.0.1)
127
- rspec (3.9.0)
128
- rspec-core (~> 3.9.0)
129
- rspec-expectations (~> 3.9.0)
130
- rspec-mocks (~> 3.9.0)
131
- rspec-core (3.9.1)
132
- rspec-support (~> 3.9.1)
133
- rspec-expectations (3.9.1)
131
+ rake (13.0.6)
132
+ rspec (3.10.0)
133
+ rspec-core (~> 3.10.0)
134
+ rspec-expectations (~> 3.10.0)
135
+ rspec-mocks (~> 3.10.0)
136
+ rspec-core (3.10.1)
137
+ rspec-support (~> 3.10.0)
138
+ rspec-expectations (3.10.1)
134
139
  diff-lcs (>= 1.2.0, < 2.0)
135
- rspec-support (~> 3.9.0)
136
- rspec-mocks (3.9.1)
140
+ rspec-support (~> 3.10.0)
141
+ rspec-mocks (3.10.2)
137
142
  diff-lcs (>= 1.2.0, < 2.0)
138
- rspec-support (~> 3.9.0)
139
- rspec-support (3.9.2)
140
- sprockets (4.0.0)
143
+ rspec-support (~> 3.10.0)
144
+ rspec-support (3.10.3)
145
+ sprockets (4.0.2)
141
146
  concurrent-ruby (~> 1.0)
142
147
  rack (> 1, < 3)
143
- sprockets-rails (3.2.1)
144
- actionpack (>= 4.0)
145
- activesupport (>= 4.0)
148
+ sprockets-rails (3.4.2)
149
+ actionpack (>= 5.2)
150
+ activesupport (>= 5.2)
146
151
  sprockets (>= 3.0.0)
147
- thor (1.0.1)
152
+ thor (1.1.0)
148
153
  thread_safe (0.3.6)
149
- tzinfo (1.2.6)
154
+ tzinfo (1.2.9)
150
155
  thread_safe (~> 0.1)
151
- websocket-driver (0.7.1)
156
+ websocket-driver (0.7.5)
152
157
  websocket-extensions (>= 0.1.0)
153
- websocket-extensions (0.1.4)
154
- zeitwerk (2.3.0)
158
+ websocket-extensions (0.1.5)
159
+ zeitwerk (2.5.3)
155
160
 
156
161
  PLATFORMS
157
162
  ruby
@@ -168,4 +173,4 @@ DEPENDENCIES
168
173
  temporal_tables!
169
174
 
170
175
  BUNDLED WITH
171
- 2.0.1
176
+ 2.3.4
@@ -0,0 +1,180 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ temporal_tables (1.0.1)
5
+ rails (>= 6.0, < 7.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (6.1.4.4)
11
+ actionpack (= 6.1.4.4)
12
+ activesupport (= 6.1.4.4)
13
+ nio4r (~> 2.0)
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)
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)
27
+ mail (~> 2.5, >= 2.5.4)
28
+ rails-dom-testing (~> 2.0)
29
+ actionpack (6.1.4.4)
30
+ actionview (= 6.1.4.4)
31
+ activesupport (= 6.1.4.4)
32
+ rack (~> 2.0, >= 2.0.9)
33
+ rack-test (>= 0.6.3)
34
+ rails-dom-testing (~> 2.0)
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)
41
+ nokogiri (>= 1.8.5)
42
+ actionview (6.1.4.4)
43
+ activesupport (= 6.1.4.4)
44
+ builder (~> 3.1)
45
+ erubi (~> 1.4)
46
+ rails-dom-testing (~> 2.0)
47
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
48
+ activejob (6.1.4.4)
49
+ activesupport (= 6.1.4.4)
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)
62
+ mini_mime (>= 1.1.0)
63
+ activesupport (6.1.4.4)
64
+ concurrent-ruby (~> 1.0, >= 1.0.2)
65
+ i18n (>= 1.6, < 2)
66
+ minitest (>= 5.1)
67
+ tzinfo (~> 2.0)
68
+ zeitwerk (~> 2.3)
69
+ builder (3.2.4)
70
+ byebug (11.1.3)
71
+ combustion (1.3.5)
72
+ activesupport (>= 3.0.0)
73
+ railties (>= 3.0.0)
74
+ thor (>= 0.14.6)
75
+ concurrent-ruby (1.1.9)
76
+ crass (1.0.6)
77
+ database_cleaner (2.0.1)
78
+ database_cleaner-active_record (~> 2.0.0)
79
+ database_cleaner-active_record (2.0.1)
80
+ activerecord (>= 5.a)
81
+ database_cleaner-core (~> 2.0.0)
82
+ database_cleaner-core (2.0.1)
83
+ 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)
89
+ concurrent-ruby (~> 1.0)
90
+ loofah (2.13.0)
91
+ crass (~> 1.0.2)
92
+ nokogiri (>= 1.5.9)
93
+ mail (2.7.1)
94
+ mini_mime (>= 0.1.1)
95
+ marcel (1.0.2)
96
+ method_source (1.0.0)
97
+ mini_mime (1.1.2)
98
+ minitest (5.15.0)
99
+ mysql2 (0.5.3)
100
+ nio4r (2.5.8)
101
+ nokogiri (1.12.5-arm64-darwin)
102
+ racc (~> 1.4)
103
+ nokogiri (1.12.5-x86_64-darwin)
104
+ 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
+ bundler (>= 1.15.0)
122
+ railties (= 6.1.4.4)
123
+ sprockets-rails (>= 2.0.0)
124
+ rails-dom-testing (2.0.3)
125
+ activesupport (>= 4.2.0)
126
+ 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)
132
+ method_source
133
+ rake (>= 0.13)
134
+ thor (~> 1.0)
135
+ rake (13.0.6)
136
+ rspec (3.10.0)
137
+ rspec-core (~> 3.10.0)
138
+ rspec-expectations (~> 3.10.0)
139
+ rspec-mocks (~> 3.10.0)
140
+ rspec-core (3.10.1)
141
+ rspec-support (~> 3.10.0)
142
+ rspec-expectations (3.10.1)
143
+ diff-lcs (>= 1.2.0, < 2.0)
144
+ rspec-support (~> 3.10.0)
145
+ rspec-mocks (3.10.2)
146
+ diff-lcs (>= 1.2.0, < 2.0)
147
+ rspec-support (~> 3.10.0)
148
+ rspec-support (3.10.3)
149
+ sprockets (4.0.2)
150
+ concurrent-ruby (~> 1.0)
151
+ rack (> 1, < 3)
152
+ sprockets-rails (3.4.2)
153
+ actionpack (>= 5.2)
154
+ activesupport (>= 5.2)
155
+ sprockets (>= 3.0.0)
156
+ thor (1.1.0)
157
+ tzinfo (2.0.4)
158
+ concurrent-ruby (~> 1.0)
159
+ websocket-driver (0.7.5)
160
+ websocket-extensions (>= 0.1.0)
161
+ websocket-extensions (0.1.5)
162
+ zeitwerk (2.5.3)
163
+
164
+ PLATFORMS
165
+ arm64-darwin-20
166
+ x86_64-darwin-19
167
+
168
+ DEPENDENCIES
169
+ byebug
170
+ combustion
171
+ database_cleaner
172
+ gemika
173
+ mysql2
174
+ rails (~> 6.1.0)
175
+ rake
176
+ rspec (~> 3.4)
177
+ temporal_tables!
178
+
179
+ BUNDLED WITH
180
+ 2.2.3
@@ -0,0 +1,180 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ temporal_tables (1.0.1)
5
+ rails (>= 6.0, < 7.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (6.1.4.4)
11
+ actionpack (= 6.1.4.4)
12
+ activesupport (= 6.1.4.4)
13
+ nio4r (~> 2.0)
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)
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)
27
+ mail (~> 2.5, >= 2.5.4)
28
+ rails-dom-testing (~> 2.0)
29
+ actionpack (6.1.4.4)
30
+ actionview (= 6.1.4.4)
31
+ activesupport (= 6.1.4.4)
32
+ rack (~> 2.0, >= 2.0.9)
33
+ rack-test (>= 0.6.3)
34
+ rails-dom-testing (~> 2.0)
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)
41
+ nokogiri (>= 1.8.5)
42
+ actionview (6.1.4.4)
43
+ activesupport (= 6.1.4.4)
44
+ builder (~> 3.1)
45
+ erubi (~> 1.4)
46
+ rails-dom-testing (~> 2.0)
47
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
48
+ activejob (6.1.4.4)
49
+ activesupport (= 6.1.4.4)
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)
62
+ mini_mime (>= 1.1.0)
63
+ activesupport (6.1.4.4)
64
+ concurrent-ruby (~> 1.0, >= 1.0.2)
65
+ i18n (>= 1.6, < 2)
66
+ minitest (>= 5.1)
67
+ tzinfo (~> 2.0)
68
+ zeitwerk (~> 2.3)
69
+ builder (3.2.4)
70
+ byebug (11.1.3)
71
+ combustion (1.3.5)
72
+ activesupport (>= 3.0.0)
73
+ railties (>= 3.0.0)
74
+ thor (>= 0.14.6)
75
+ concurrent-ruby (1.1.9)
76
+ crass (1.0.6)
77
+ database_cleaner (2.0.1)
78
+ database_cleaner-active_record (~> 2.0.0)
79
+ database_cleaner-active_record (2.0.1)
80
+ activerecord (>= 5.a)
81
+ database_cleaner-core (~> 2.0.0)
82
+ database_cleaner-core (2.0.1)
83
+ 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)
89
+ concurrent-ruby (~> 1.0)
90
+ loofah (2.13.0)
91
+ crass (~> 1.0.2)
92
+ nokogiri (>= 1.5.9)
93
+ mail (2.7.1)
94
+ mini_mime (>= 0.1.1)
95
+ marcel (1.0.2)
96
+ method_source (1.0.0)
97
+ mini_mime (1.1.2)
98
+ minitest (5.15.0)
99
+ nio4r (2.5.8)
100
+ nokogiri (1.12.5-arm64-darwin)
101
+ racc (~> 1.4)
102
+ nokogiri (1.12.5-x86_64-darwin)
103
+ racc (~> 1.4)
104
+ pg (1.2.3)
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
+ bundler (>= 1.15.0)
122
+ railties (= 6.1.4.4)
123
+ sprockets-rails (>= 2.0.0)
124
+ rails-dom-testing (2.0.3)
125
+ activesupport (>= 4.2.0)
126
+ 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)
132
+ method_source
133
+ rake (>= 0.13)
134
+ thor (~> 1.0)
135
+ rake (13.0.6)
136
+ rspec (3.10.0)
137
+ rspec-core (~> 3.10.0)
138
+ rspec-expectations (~> 3.10.0)
139
+ rspec-mocks (~> 3.10.0)
140
+ rspec-core (3.10.1)
141
+ rspec-support (~> 3.10.0)
142
+ rspec-expectations (3.10.1)
143
+ diff-lcs (>= 1.2.0, < 2.0)
144
+ rspec-support (~> 3.10.0)
145
+ rspec-mocks (3.10.2)
146
+ diff-lcs (>= 1.2.0, < 2.0)
147
+ rspec-support (~> 3.10.0)
148
+ rspec-support (3.10.3)
149
+ sprockets (4.0.2)
150
+ concurrent-ruby (~> 1.0)
151
+ rack (> 1, < 3)
152
+ sprockets-rails (3.4.2)
153
+ actionpack (>= 5.2)
154
+ activesupport (>= 5.2)
155
+ sprockets (>= 3.0.0)
156
+ thor (1.1.0)
157
+ tzinfo (2.0.4)
158
+ concurrent-ruby (~> 1.0)
159
+ websocket-driver (0.7.5)
160
+ websocket-extensions (>= 0.1.0)
161
+ websocket-extensions (0.1.5)
162
+ zeitwerk (2.5.3)
163
+
164
+ PLATFORMS
165
+ arm64-darwin-20
166
+ x86_64-darwin-19
167
+
168
+ DEPENDENCIES
169
+ byebug
170
+ combustion
171
+ database_cleaner
172
+ gemika
173
+ pg (>= 0.18, < 2.0)
174
+ rails (~> 6.1.0)
175
+ rake
176
+ rspec (~> 3.4)
177
+ temporal_tables!
178
+
179
+ BUNDLED WITH
180
+ 2.2.3
@@ -1,8 +1,8 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Runtime dependencies
4
- gem 'rails', '~> 5.2.0'
5
- gem 'mysql2', '~> 0.4.4'
4
+ gem 'rails', '~> 7.0.0'
5
+ gem 'mysql2'
6
6
 
7
7
  # Development dependencies
8
8
  gem 'rspec', '~> 3.4'