panko_serializer 0.8.2 → 0.8.3

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.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/.github/dependabot.yml +6 -0
  3. data/.github/workflows/docs.yml +4 -4
  4. data/.github/workflows/lint.yml +8 -14
  5. data/.github/workflows/ruby.yml +11 -7
  6. data/.gitignore +2 -0
  7. data/.rubocop.yml +29 -21
  8. data/Appraisals +20 -8
  9. data/Gemfile +11 -3
  10. data/README.md +3 -3
  11. data/Rakefile +3 -1
  12. data/benchmarks/allocs.rb +2 -2
  13. data/benchmarks/benchmarking_support.rb +2 -1
  14. data/benchmarks/bm_ams_0_10.rb +3 -7
  15. data/benchmarks/bm_panko_json.rb +2 -6
  16. data/benchmarks/bm_panko_object.rb +2 -6
  17. data/benchmarks/bm_plain_object.rb +1 -4
  18. data/benchmarks/bm_serialization_descriptor.rb +1 -1
  19. data/benchmarks/bm_to_object.rb +2 -6
  20. data/benchmarks/profile.rb +2 -2
  21. data/benchmarks/sanity.rb +2 -6
  22. data/benchmarks/setup.rb +4 -3
  23. data/benchmarks/type_casts/support.rb +0 -1
  24. data/docs/docs/associations.md +19 -6
  25. data/docs/docs/attributes.md +29 -23
  26. data/docs/docs/design-choices.md +28 -27
  27. data/docs/docs/getting-started.md +9 -3
  28. data/docs/docs/introduction.md +5 -5
  29. data/docs/docs/performance.md +0 -1
  30. data/docs/docs/response-bag.md +8 -1
  31. data/docs/docusaurus.config.js +86 -0
  32. data/docs/package-lock.json +12607 -18674
  33. data/docs/package.json +14 -7
  34. data/docs/src/css/customTheme.css +9 -0
  35. data/docs/static/CNAME +1 -0
  36. data/ext/panko_serializer/attributes_writer/active_record.c +103 -72
  37. data/ext/panko_serializer/attributes_writer/active_record.h +2 -0
  38. data/gemfiles/7.0.0.gemfile +12 -3
  39. data/gemfiles/7.0.0.gemfile.lock +62 -50
  40. data/gemfiles/7.1.0.gemfile +15 -6
  41. data/gemfiles/7.1.0.gemfile.lock +76 -59
  42. data/gemfiles/{6.1.0.gemfile → 7.2.0.gemfile} +15 -6
  43. data/gemfiles/{6.1.0.gemfile.lock → 7.2.0.gemfile.lock} +97 -65
  44. data/gemfiles/8.0.0.gemfile +39 -0
  45. data/gemfiles/8.0.0.gemfile.lock +219 -0
  46. data/lib/panko/version.rb +1 -1
  47. data/panko_serializer.gemspec +1 -1
  48. metadata +12 -12
  49. data/.standard.yml +0 -5
  50. data/docs/.DS_Store +0 -0
  51. data/docs/README.md +0 -198
  52. data/docs/core/Footer.js +0 -80
  53. data/docs/i18n/en.json +0 -50
  54. data/docs/siteConfig.js +0 -80
@@ -1,16 +1,16 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- panko_serializer (0.8.1)
4
+ panko_serializer (0.8.3)
5
5
  activesupport
6
6
  oj (> 3.11.0, < 4.0.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actionpack (7.1.3.2)
12
- actionview (= 7.1.3.2)
13
- activesupport (= 7.1.3.2)
11
+ actionpack (7.1.5.1)
12
+ actionview (= 7.1.5.1)
13
+ activesupport (= 7.1.5.1)
14
14
  nokogiri (>= 1.8.5)
15
15
  racc
16
16
  rack (>= 2.2.4)
@@ -18,8 +18,8 @@ GEM
18
18
  rack-test (>= 0.6.3)
19
19
  rails-dom-testing (~> 2.2)
20
20
  rails-html-sanitizer (~> 1.6)
21
- actionview (7.1.3.2)
22
- activesupport (= 7.1.3.2)
21
+ actionview (7.1.5.1)
22
+ activesupport (= 7.1.5.1)
23
23
  builder (~> 3.1)
24
24
  erubi (~> 1.11)
25
25
  rails-dom-testing (~> 2.2)
@@ -29,21 +29,24 @@ GEM
29
29
  activemodel (>= 4.1)
30
30
  case_transform (>= 0.2)
31
31
  jsonapi-renderer (>= 0.1.1.beta1, < 0.3)
32
- activemodel (7.1.3.2)
33
- activesupport (= 7.1.3.2)
34
- activerecord (7.1.3.2)
35
- activemodel (= 7.1.3.2)
36
- activesupport (= 7.1.3.2)
32
+ activemodel (7.1.5.1)
33
+ activesupport (= 7.1.5.1)
34
+ activerecord (7.1.5.1)
35
+ activemodel (= 7.1.5.1)
36
+ activesupport (= 7.1.5.1)
37
37
  timeout (>= 0.4.0)
38
- activesupport (7.1.3.2)
38
+ activesupport (7.1.5.1)
39
39
  base64
40
+ benchmark (>= 0.3)
40
41
  bigdecimal
41
42
  concurrent-ruby (~> 1.0, >= 1.0.2)
42
43
  connection_pool (>= 2.2.5)
43
44
  drb
44
45
  i18n (>= 1.6, < 2)
46
+ logger (>= 1.4.2)
45
47
  minitest (>= 5.1)
46
48
  mutex_m
49
+ securerandom (>= 0.3)
47
50
  tzinfo (~> 2.0)
48
51
  appraisal (2.5.0)
49
52
  bundler
@@ -51,42 +54,47 @@ GEM
51
54
  thor (>= 0.14.0)
52
55
  ast (2.4.2)
53
56
  base64 (0.2.0)
54
- benchmark-ips (2.13.0)
55
- bigdecimal (3.1.7)
56
- builder (3.2.4)
57
+ benchmark (0.4.0)
58
+ benchmark-ips (2.14.0)
59
+ bigdecimal (3.1.8)
60
+ builder (3.3.0)
57
61
  byebug (11.1.3)
58
62
  case_transform (0.2)
59
63
  activesupport
60
- concurrent-ruby (1.2.3)
64
+ concurrent-ruby (1.3.4)
61
65
  connection_pool (2.4.1)
62
66
  crass (1.0.6)
63
67
  diff-lcs (1.5.1)
64
68
  drb (2.2.1)
65
- erubi (1.12.0)
66
- faker (3.2.3)
69
+ erubi (1.13.0)
70
+ faker (3.5.1)
67
71
  i18n (>= 1.8.11, < 2)
68
- i18n (1.14.4)
72
+ i18n (1.14.6)
69
73
  concurrent-ruby (~> 1.0)
70
- json (2.7.1)
74
+ json (2.7.5)
71
75
  jsonapi-renderer (0.2.2)
72
76
  language_server-protocol (3.17.0.3)
73
77
  lint_roller (1.1.0)
74
- loofah (2.22.0)
78
+ logger (1.6.3)
79
+ loofah (2.23.1)
75
80
  crass (~> 1.0.2)
76
81
  nokogiri (>= 1.12.0)
77
- memory_profiler (1.0.1)
78
- minitest (5.22.3)
79
- mutex_m (0.2.0)
80
- nokogiri (1.16.3-arm64-darwin)
82
+ memory_profiler (1.1.0)
83
+ minitest (5.25.4)
84
+ mutex_m (0.3.0)
85
+ nokogiri (1.16.7-arm64-darwin)
81
86
  racc (~> 1.4)
82
- oj (3.16.1)
83
- parallel (1.24.0)
84
- parser (3.3.0.5)
87
+ oj (3.16.7)
88
+ bigdecimal (>= 3.0)
89
+ ostruct (>= 0.2)
90
+ ostruct (0.6.0)
91
+ parallel (1.26.3)
92
+ parser (3.3.5.1)
85
93
  ast (~> 2.4.1)
86
94
  racc
87
- pg (1.5.5)
88
- racc (1.7.3)
89
- rack (3.0.10)
95
+ pg (1.5.9)
96
+ racc (1.8.1)
97
+ rack (3.1.8)
90
98
  rack-session (2.0.0)
91
99
  rack (>= 3.0.0)
92
100
  rack-test (2.1.0)
@@ -100,82 +108,91 @@ GEM
100
108
  nokogiri (~> 1.14)
101
109
  rainbow (3.1.1)
102
110
  rake (13.2.1)
103
- rake-compiler (1.2.1)
111
+ rake-compiler (1.2.8)
104
112
  rake
105
- regexp_parser (2.9.0)
106
- rexml (3.2.6)
113
+ regexp_parser (2.9.2)
107
114
  rspec (3.13.0)
108
115
  rspec-core (~> 3.13.0)
109
116
  rspec-expectations (~> 3.13.0)
110
117
  rspec-mocks (~> 3.13.0)
111
- rspec-core (3.13.0)
118
+ rspec-core (3.13.2)
112
119
  rspec-support (~> 3.13.0)
113
- rspec-expectations (3.13.0)
120
+ rspec-expectations (3.13.3)
114
121
  diff-lcs (>= 1.2.0, < 2.0)
115
122
  rspec-support (~> 3.13.0)
116
- rspec-mocks (3.13.0)
123
+ rspec-mocks (3.13.2)
117
124
  diff-lcs (>= 1.2.0, < 2.0)
118
125
  rspec-support (~> 3.13.0)
119
126
  rspec-support (3.13.1)
120
- rubocop (1.62.1)
127
+ rubocop (1.66.1)
121
128
  json (~> 2.3)
122
129
  language_server-protocol (>= 3.17.0)
123
130
  parallel (~> 1.10)
124
131
  parser (>= 3.3.0.2)
125
132
  rainbow (>= 2.2.2, < 4.0)
126
- regexp_parser (>= 1.8, < 3.0)
127
- rexml (>= 3.2.5, < 4.0)
128
- rubocop-ast (>= 1.31.1, < 2.0)
133
+ regexp_parser (>= 2.4, < 3.0)
134
+ rubocop-ast (>= 1.32.2, < 2.0)
129
135
  ruby-progressbar (~> 1.7)
130
136
  unicode-display_width (>= 2.4.0, < 3.0)
131
- rubocop-ast (1.31.2)
132
- parser (>= 3.3.0.4)
133
- rubocop-performance (1.20.2)
137
+ rubocop-ast (1.33.0)
138
+ parser (>= 3.3.1.0)
139
+ rubocop-performance (1.22.1)
134
140
  rubocop (>= 1.48.1, < 2.0)
135
- rubocop-ast (>= 1.30.0, < 2.0)
141
+ rubocop-ast (>= 1.31.1, < 2.0)
142
+ rubocop-rspec (3.2.0)
143
+ rubocop (~> 1.61)
136
144
  ruby-progressbar (1.13.0)
145
+ securerandom (0.4.0)
137
146
  sqlite3 (1.7.3-arm64-darwin)
138
- standard (1.34.0)
147
+ stackprof (0.2.26)
148
+ standard (1.41.1)
139
149
  language_server-protocol (~> 3.17.0.2)
140
150
  lint_roller (~> 1.0)
141
- rubocop (~> 1.60)
151
+ rubocop (~> 1.66.0)
142
152
  standard-custom (~> 1.0.0)
143
- standard-performance (~> 1.3)
153
+ standard-performance (~> 1.5)
144
154
  standard-custom (1.0.2)
145
155
  lint_roller (~> 1.0)
146
156
  rubocop (~> 1.50)
147
- standard-performance (1.3.1)
157
+ standard-performance (1.5.0)
148
158
  lint_roller (~> 1.1)
149
- rubocop-performance (~> 1.20.2)
159
+ rubocop-performance (~> 1.22.0)
150
160
  terminal-table (3.0.2)
151
161
  unicode-display_width (>= 1.1.1, < 3)
152
- thor (1.3.1)
153
- timeout (0.4.1)
162
+ thor (1.3.2)
163
+ timeout (0.4.2)
154
164
  tzinfo (2.0.6)
155
165
  concurrent-ruby (~> 1.0)
156
- unicode-display_width (2.5.0)
166
+ unicode-display_width (2.6.0)
167
+ vernier (1.3.0)
157
168
 
158
169
  PLATFORMS
159
- arm64-darwin-23
170
+ arm64-darwin
160
171
 
161
172
  DEPENDENCIES
162
173
  active_model_serializers (~> 0.10)
163
- activemodel (~> 7.1.0)
164
- activerecord (~> 7.1.0)
165
- activesupport (~> 7.1.0)
174
+ activemodel (~> 7.1.5)
175
+ activerecord (~> 7.1.5)
176
+ activesupport (~> 7.1.5)
166
177
  appraisal
167
178
  benchmark-ips
168
179
  byebug
169
180
  faker
170
181
  memory_profiler
171
182
  panko_serializer!
172
- pg (>= 0.18, < 2.0)
183
+ pg
173
184
  rake
174
185
  rake-compiler
175
186
  rspec (~> 3.0)
187
+ rubocop
188
+ rubocop-performance
189
+ rubocop-rspec
176
190
  sqlite3 (~> 1.4)
191
+ stackprof
177
192
  standard
193
+ standard-performance
178
194
  terminal-table
195
+ vernier
179
196
 
180
197
  BUNDLED WITH
181
- 2.4.6
198
+ 2.5.21
@@ -2,14 +2,15 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "standard", group: [:development, :test]
6
- gem "activesupport", "~> 6.1.0"
7
- gem "activemodel", "~> 6.1.0"
8
- gem "activerecord", "~> 6.1.0", group: :test
5
+ gem "sqlite3", "~> 1.4"
6
+ gem "activesupport", "~> 7.2.0"
7
+ gem "activemodel", "~> 7.2.0"
8
+ gem "activerecord", "~> 7.2.0", group: :test
9
9
 
10
10
  group :benchmarks do
11
- gem "sqlite3", "~> 1.4"
12
- gem "pg", ">= 0.18", "< 2.0"
11
+ gem "vernier"
12
+ gem "stackprof"
13
+ gem "pg"
13
14
  gem "benchmark-ips"
14
15
  gem "active_model_serializers", "~> 0.10"
15
16
  gem "terminal-table"
@@ -27,4 +28,12 @@ group :development do
27
28
  gem "rake-compiler"
28
29
  end
29
30
 
31
+ group :development, :test do
32
+ gem "rubocop"
33
+ gem "standard"
34
+ gem "standard-performance"
35
+ gem "rubocop-performance"
36
+ gem "rubocop-rspec"
37
+ end
38
+
30
39
  gemspec path: "../"
@@ -1,79 +1,101 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- panko_serializer (0.8.1)
4
+ panko_serializer (0.8.3)
5
5
  activesupport
6
6
  oj (> 3.11.0, < 4.0.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actionpack (6.1.7.7)
12
- actionview (= 6.1.7.7)
13
- activesupport (= 6.1.7.7)
14
- rack (~> 2.0, >= 2.0.9)
11
+ actionpack (7.2.2.1)
12
+ actionview (= 7.2.2.1)
13
+ activesupport (= 7.2.2.1)
14
+ nokogiri (>= 1.8.5)
15
+ racc
16
+ rack (>= 2.2.4, < 3.2)
17
+ rack-session (>= 1.0.1)
15
18
  rack-test (>= 0.6.3)
16
- rails-dom-testing (~> 2.0)
17
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
18
- actionview (6.1.7.7)
19
- activesupport (= 6.1.7.7)
19
+ rails-dom-testing (~> 2.2)
20
+ rails-html-sanitizer (~> 1.6)
21
+ useragent (~> 0.16)
22
+ actionview (7.2.2.1)
23
+ activesupport (= 7.2.2.1)
20
24
  builder (~> 3.1)
21
- erubi (~> 1.4)
22
- rails-dom-testing (~> 2.0)
23
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
25
+ erubi (~> 1.11)
26
+ rails-dom-testing (~> 2.2)
27
+ rails-html-sanitizer (~> 1.6)
24
28
  active_model_serializers (0.10.14)
25
29
  actionpack (>= 4.1)
26
30
  activemodel (>= 4.1)
27
31
  case_transform (>= 0.2)
28
32
  jsonapi-renderer (>= 0.1.1.beta1, < 0.3)
29
- activemodel (6.1.7.7)
30
- activesupport (= 6.1.7.7)
31
- activerecord (6.1.7.7)
32
- activemodel (= 6.1.7.7)
33
- activesupport (= 6.1.7.7)
34
- activesupport (6.1.7.7)
35
- concurrent-ruby (~> 1.0, >= 1.0.2)
33
+ activemodel (7.2.2.1)
34
+ activesupport (= 7.2.2.1)
35
+ activerecord (7.2.2.1)
36
+ activemodel (= 7.2.2.1)
37
+ activesupport (= 7.2.2.1)
38
+ timeout (>= 0.4.0)
39
+ activesupport (7.2.2.1)
40
+ base64
41
+ benchmark (>= 0.3)
42
+ bigdecimal
43
+ concurrent-ruby (~> 1.0, >= 1.3.1)
44
+ connection_pool (>= 2.2.5)
45
+ drb
36
46
  i18n (>= 1.6, < 2)
47
+ logger (>= 1.4.2)
37
48
  minitest (>= 5.1)
38
- tzinfo (~> 2.0)
39
- zeitwerk (~> 2.3)
49
+ securerandom (>= 0.3)
50
+ tzinfo (~> 2.0, >= 2.0.5)
40
51
  appraisal (2.5.0)
41
52
  bundler
42
53
  rake
43
54
  thor (>= 0.14.0)
44
55
  ast (2.4.2)
45
- benchmark-ips (2.13.0)
46
- builder (3.2.4)
56
+ base64 (0.2.0)
57
+ benchmark (0.4.0)
58
+ benchmark-ips (2.14.0)
59
+ bigdecimal (3.1.8)
60
+ builder (3.3.0)
47
61
  byebug (11.1.3)
48
62
  case_transform (0.2)
49
63
  activesupport
50
- concurrent-ruby (1.2.3)
64
+ concurrent-ruby (1.3.4)
65
+ connection_pool (2.4.1)
51
66
  crass (1.0.6)
52
67
  diff-lcs (1.5.1)
53
- erubi (1.12.0)
54
- faker (3.2.3)
68
+ drb (2.2.1)
69
+ erubi (1.13.0)
70
+ faker (3.5.1)
55
71
  i18n (>= 1.8.11, < 2)
56
- i18n (1.14.4)
72
+ i18n (1.14.6)
57
73
  concurrent-ruby (~> 1.0)
58
- json (2.7.1)
74
+ json (2.7.5)
59
75
  jsonapi-renderer (0.2.2)
60
76
  language_server-protocol (3.17.0.3)
61
77
  lint_roller (1.1.0)
78
+ logger (1.6.3)
62
79
  loofah (2.22.0)
63
80
  crass (~> 1.0.2)
64
81
  nokogiri (>= 1.12.0)
65
- memory_profiler (1.0.1)
66
- minitest (5.22.3)
67
- nokogiri (1.16.3-arm64-darwin)
82
+ memory_profiler (1.1.0)
83
+ minitest (5.25.4)
84
+ nokogiri (1.16.7-arm64-darwin)
68
85
  racc (~> 1.4)
69
- oj (3.16.1)
70
- parallel (1.24.0)
71
- parser (3.3.0.5)
86
+ oj (3.16.7)
87
+ bigdecimal (>= 3.0)
88
+ ostruct (>= 0.2)
89
+ ostruct (0.6.0)
90
+ parallel (1.26.3)
91
+ parser (3.3.5.1)
72
92
  ast (~> 2.4.1)
73
93
  racc
74
- pg (1.5.5)
75
- racc (1.7.3)
76
- rack (2.2.8.1)
94
+ pg (1.5.9)
95
+ racc (1.8.1)
96
+ rack (3.1.8)
97
+ rack-session (2.0.0)
98
+ rack (>= 3.0.0)
77
99
  rack-test (2.1.0)
78
100
  rack (>= 1.3)
79
101
  rails-dom-testing (2.2.0)
@@ -85,82 +107,92 @@ GEM
85
107
  nokogiri (~> 1.14)
86
108
  rainbow (3.1.1)
87
109
  rake (13.2.1)
88
- rake-compiler (1.2.1)
110
+ rake-compiler (1.2.8)
89
111
  rake
90
- regexp_parser (2.9.0)
91
- rexml (3.2.6)
112
+ regexp_parser (2.9.2)
92
113
  rspec (3.13.0)
93
114
  rspec-core (~> 3.13.0)
94
115
  rspec-expectations (~> 3.13.0)
95
116
  rspec-mocks (~> 3.13.0)
96
- rspec-core (3.13.0)
117
+ rspec-core (3.13.2)
97
118
  rspec-support (~> 3.13.0)
98
- rspec-expectations (3.13.0)
119
+ rspec-expectations (3.13.3)
99
120
  diff-lcs (>= 1.2.0, < 2.0)
100
121
  rspec-support (~> 3.13.0)
101
- rspec-mocks (3.13.0)
122
+ rspec-mocks (3.13.2)
102
123
  diff-lcs (>= 1.2.0, < 2.0)
103
124
  rspec-support (~> 3.13.0)
104
125
  rspec-support (3.13.1)
105
- rubocop (1.62.1)
126
+ rubocop (1.66.1)
106
127
  json (~> 2.3)
107
128
  language_server-protocol (>= 3.17.0)
108
129
  parallel (~> 1.10)
109
130
  parser (>= 3.3.0.2)
110
131
  rainbow (>= 2.2.2, < 4.0)
111
- regexp_parser (>= 1.8, < 3.0)
112
- rexml (>= 3.2.5, < 4.0)
113
- rubocop-ast (>= 1.31.1, < 2.0)
132
+ regexp_parser (>= 2.4, < 3.0)
133
+ rubocop-ast (>= 1.32.2, < 2.0)
114
134
  ruby-progressbar (~> 1.7)
115
135
  unicode-display_width (>= 2.4.0, < 3.0)
116
- rubocop-ast (1.31.2)
117
- parser (>= 3.3.0.4)
118
- rubocop-performance (1.20.2)
136
+ rubocop-ast (1.33.0)
137
+ parser (>= 3.3.1.0)
138
+ rubocop-performance (1.22.1)
119
139
  rubocop (>= 1.48.1, < 2.0)
120
- rubocop-ast (>= 1.30.0, < 2.0)
140
+ rubocop-ast (>= 1.31.1, < 2.0)
141
+ rubocop-rspec (3.2.0)
142
+ rubocop (~> 1.61)
121
143
  ruby-progressbar (1.13.0)
144
+ securerandom (0.4.0)
122
145
  sqlite3 (1.7.3-arm64-darwin)
123
- standard (1.34.0)
146
+ stackprof (0.2.26)
147
+ standard (1.41.1)
124
148
  language_server-protocol (~> 3.17.0.2)
125
149
  lint_roller (~> 1.0)
126
- rubocop (~> 1.60)
150
+ rubocop (~> 1.66.0)
127
151
  standard-custom (~> 1.0.0)
128
- standard-performance (~> 1.3)
152
+ standard-performance (~> 1.5)
129
153
  standard-custom (1.0.2)
130
154
  lint_roller (~> 1.0)
131
155
  rubocop (~> 1.50)
132
- standard-performance (1.3.1)
156
+ standard-performance (1.5.0)
133
157
  lint_roller (~> 1.1)
134
- rubocop-performance (~> 1.20.2)
158
+ rubocop-performance (~> 1.22.0)
135
159
  terminal-table (3.0.2)
136
160
  unicode-display_width (>= 1.1.1, < 3)
137
- thor (1.3.1)
161
+ thor (1.3.2)
162
+ timeout (0.4.2)
138
163
  tzinfo (2.0.6)
139
164
  concurrent-ruby (~> 1.0)
140
- unicode-display_width (2.5.0)
141
- zeitwerk (2.6.13)
165
+ unicode-display_width (2.6.0)
166
+ useragent (0.16.10)
167
+ vernier (1.3.0)
142
168
 
143
169
  PLATFORMS
144
- arm64-darwin-23
170
+ arm64-darwin
145
171
 
146
172
  DEPENDENCIES
147
173
  active_model_serializers (~> 0.10)
148
- activemodel (~> 6.1.0)
149
- activerecord (~> 6.1.0)
150
- activesupport (~> 6.1.0)
174
+ activemodel (~> 7.2.0)
175
+ activerecord (~> 7.2.0)
176
+ activesupport (~> 7.2.0)
151
177
  appraisal
152
178
  benchmark-ips
153
179
  byebug
154
180
  faker
155
181
  memory_profiler
156
182
  panko_serializer!
157
- pg (>= 0.18, < 2.0)
183
+ pg
158
184
  rake
159
185
  rake-compiler
160
186
  rspec (~> 3.0)
187
+ rubocop
188
+ rubocop-performance
189
+ rubocop-rspec
161
190
  sqlite3 (~> 1.4)
191
+ stackprof
162
192
  standard
193
+ standard-performance
163
194
  terminal-table
195
+ vernier
164
196
 
165
197
  BUNDLED WITH
166
- 2.4.6
198
+ 2.5.21
@@ -0,0 +1,39 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "sqlite3", ">= 2.1"
6
+ gem "activesupport", "~> 8.0.0"
7
+ gem "activemodel", "~> 8.0.0"
8
+ gem "activerecord", "~> 8.0.0", group: :test
9
+
10
+ group :benchmarks do
11
+ gem "vernier"
12
+ gem "stackprof"
13
+ gem "pg"
14
+ gem "benchmark-ips"
15
+ gem "active_model_serializers", "~> 0.10"
16
+ gem "terminal-table"
17
+ gem "memory_profiler"
18
+ end
19
+
20
+ group :test do
21
+ gem "faker"
22
+ end
23
+
24
+ group :development do
25
+ gem "byebug"
26
+ gem "rake"
27
+ gem "rspec", "~> 3.0"
28
+ gem "rake-compiler"
29
+ end
30
+
31
+ group :development, :test do
32
+ gem "rubocop"
33
+ gem "standard"
34
+ gem "standard-performance"
35
+ gem "rubocop-performance"
36
+ gem "rubocop-rspec"
37
+ end
38
+
39
+ gemspec path: "../"