jpie 0.1.0 → 0.3.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.
Files changed (67) hide show
  1. checksums.yaml +4 -4
  2. data/.aiconfig +65 -0
  3. data/.rubocop.yml +110 -35
  4. data/CHANGELOG.md +93 -0
  5. data/LICENSE.txt +21 -0
  6. data/README.md +776 -1903
  7. data/Rakefile +14 -3
  8. data/jpie.gemspec +35 -18
  9. data/lib/jpie/configuration.rb +12 -0
  10. data/lib/jpie/controller/crud_actions.rb +110 -0
  11. data/lib/jpie/controller/error_handling.rb +41 -0
  12. data/lib/jpie/controller/parameter_parsing.rb +35 -0
  13. data/lib/jpie/controller/rendering.rb +60 -0
  14. data/lib/jpie/controller.rb +18 -0
  15. data/lib/jpie/deserializer.rb +110 -0
  16. data/lib/jpie/errors.rb +70 -0
  17. data/lib/jpie/generators/resource_generator.rb +39 -0
  18. data/lib/jpie/generators/templates/resource.rb.erb +12 -0
  19. data/lib/jpie/railtie.rb +36 -0
  20. data/lib/jpie/resource/attributable.rb +98 -0
  21. data/lib/jpie/resource/inferrable.rb +43 -0
  22. data/lib/jpie/resource/sortable.rb +93 -0
  23. data/lib/jpie/resource.rb +107 -0
  24. data/lib/jpie/serializer.rb +205 -0
  25. data/lib/{json_api → jpie}/version.rb +2 -2
  26. data/lib/jpie.rb +23 -3
  27. metadata +145 -50
  28. data/.gitignore +0 -21
  29. data/.rspec +0 -3
  30. data/.travis.yml +0 -7
  31. data/Gemfile +0 -21
  32. data/Gemfile.lock +0 -312
  33. data/bin/console +0 -15
  34. data/bin/setup +0 -8
  35. data/kiln/app/resources/user_message_resource.rb +0 -2
  36. data/lib/json_api/active_storage/deserialization.rb +0 -106
  37. data/lib/json_api/active_storage/detection.rb +0 -74
  38. data/lib/json_api/active_storage/serialization.rb +0 -32
  39. data/lib/json_api/configuration.rb +0 -58
  40. data/lib/json_api/controllers/base_controller.rb +0 -26
  41. data/lib/json_api/controllers/concerns/controller_helpers.rb +0 -223
  42. data/lib/json_api/controllers/concerns/resource_actions.rb +0 -657
  43. data/lib/json_api/controllers/relationships_controller.rb +0 -504
  44. data/lib/json_api/controllers/resources_controller.rb +0 -6
  45. data/lib/json_api/errors/parameter_not_allowed.rb +0 -19
  46. data/lib/json_api/railtie.rb +0 -75
  47. data/lib/json_api/resources/active_storage_blob_resource.rb +0 -11
  48. data/lib/json_api/resources/resource.rb +0 -238
  49. data/lib/json_api/resources/resource_loader.rb +0 -35
  50. data/lib/json_api/routing.rb +0 -72
  51. data/lib/json_api/serialization/deserializer.rb +0 -362
  52. data/lib/json_api/serialization/serializer.rb +0 -320
  53. data/lib/json_api/support/active_storage_support.rb +0 -85
  54. data/lib/json_api/support/collection_query.rb +0 -406
  55. data/lib/json_api/support/instrumentation.rb +0 -42
  56. data/lib/json_api/support/param_helpers.rb +0 -51
  57. data/lib/json_api/support/relationship_guard.rb +0 -16
  58. data/lib/json_api/support/relationship_helpers.rb +0 -74
  59. data/lib/json_api/support/resource_identifier.rb +0 -87
  60. data/lib/json_api/support/responders.rb +0 -100
  61. data/lib/json_api/support/response_helpers.rb +0 -10
  62. data/lib/json_api/support/sort_parsing.rb +0 -21
  63. data/lib/json_api/support/type_conversion.rb +0 -21
  64. data/lib/json_api/testing/test_helper.rb +0 -76
  65. data/lib/json_api/testing.rb +0 -3
  66. data/lib/json_api.rb +0 -50
  67. data/lib/rubocop/cop/custom/hash_value_omission.rb +0 -53
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jpie
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Emil Kampp
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 1980-01-02 00:00:00.000000000 Z
10
+ date: 2025-05-24 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
- name: actionpack
13
+ name: activesupport
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
16
  - - "~>"
@@ -49,64 +49,159 @@ dependencies:
49
49
  - - ">="
50
50
  - !ruby/object:Gem::Version
51
51
  version: 8.0.0
52
- description: A Rails 8+ gem that provides jsonapi_resources routing DSL and generic
53
- JSON:API controllers
52
+ - !ruby/object:Gem::Dependency
53
+ name: brakeman
54
+ requirement: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - "~>"
57
+ - !ruby/object:Gem::Version
58
+ version: '6.0'
59
+ type: :development
60
+ prerelease: false
61
+ version_requirements: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - "~>"
64
+ - !ruby/object:Gem::Version
65
+ version: '6.0'
66
+ - !ruby/object:Gem::Dependency
67
+ name: rake
68
+ requirement: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - "~>"
71
+ - !ruby/object:Gem::Version
72
+ version: '13.0'
73
+ type: :development
74
+ prerelease: false
75
+ version_requirements: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - "~>"
78
+ - !ruby/object:Gem::Version
79
+ version: '13.0'
80
+ - !ruby/object:Gem::Dependency
81
+ name: rspec
82
+ requirement: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - "~>"
85
+ - !ruby/object:Gem::Version
86
+ version: '3.12'
87
+ type: :development
88
+ prerelease: false
89
+ version_requirements: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - "~>"
92
+ - !ruby/object:Gem::Version
93
+ version: '3.12'
94
+ - !ruby/object:Gem::Dependency
95
+ name: rspec-rails
96
+ requirement: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - "~>"
99
+ - !ruby/object:Gem::Version
100
+ version: '7.0'
101
+ type: :development
102
+ prerelease: false
103
+ version_requirements: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - "~>"
106
+ - !ruby/object:Gem::Version
107
+ version: '7.0'
108
+ - !ruby/object:Gem::Dependency
109
+ name: rubocop
110
+ requirement: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - "~>"
113
+ - !ruby/object:Gem::Version
114
+ version: '1.50'
115
+ type: :development
116
+ prerelease: false
117
+ version_requirements: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - "~>"
120
+ - !ruby/object:Gem::Version
121
+ version: '1.50'
122
+ - !ruby/object:Gem::Dependency
123
+ name: rubocop-performance
124
+ requirement: !ruby/object:Gem::Requirement
125
+ requirements:
126
+ - - "~>"
127
+ - !ruby/object:Gem::Version
128
+ version: '1.16'
129
+ type: :development
130
+ prerelease: false
131
+ version_requirements: !ruby/object:Gem::Requirement
132
+ requirements:
133
+ - - "~>"
134
+ - !ruby/object:Gem::Version
135
+ version: '1.16'
136
+ - !ruby/object:Gem::Dependency
137
+ name: rubocop-rails
138
+ requirement: !ruby/object:Gem::Requirement
139
+ requirements:
140
+ - - "~>"
141
+ - !ruby/object:Gem::Version
142
+ version: '2.18'
143
+ type: :development
144
+ prerelease: false
145
+ version_requirements: !ruby/object:Gem::Requirement
146
+ requirements:
147
+ - - "~>"
148
+ - !ruby/object:Gem::Version
149
+ version: '2.18'
150
+ - !ruby/object:Gem::Dependency
151
+ name: rubocop-rspec
152
+ requirement: !ruby/object:Gem::Requirement
153
+ requirements:
154
+ - - "~>"
155
+ - !ruby/object:Gem::Version
156
+ version: '2.20'
157
+ type: :development
158
+ prerelease: false
159
+ version_requirements: !ruby/object:Gem::Requirement
160
+ requirements:
161
+ - - "~>"
162
+ - !ruby/object:Gem::Version
163
+ version: '2.20'
164
+ description: JPie provides a framework for developing JSON:API compliant servers with
165
+ Rails 8+. It focuses on clean architecture with strong separation of concerns.
54
166
  email:
55
- - emil@kampp.me
167
+ - emil@example.com
56
168
  executables: []
57
169
  extensions: []
58
170
  extra_rdoc_files: []
59
171
  files:
60
- - ".gitignore"
61
- - ".rspec"
172
+ - ".aiconfig"
62
173
  - ".rubocop.yml"
63
- - ".travis.yml"
64
- - Gemfile
65
- - Gemfile.lock
174
+ - CHANGELOG.md
175
+ - LICENSE.txt
66
176
  - README.md
67
177
  - Rakefile
68
- - bin/console
69
- - bin/setup
70
178
  - jpie.gemspec
71
- - kiln/app/resources/user_message_resource.rb
72
179
  - lib/jpie.rb
73
- - lib/json_api.rb
74
- - lib/json_api/active_storage/deserialization.rb
75
- - lib/json_api/active_storage/detection.rb
76
- - lib/json_api/active_storage/serialization.rb
77
- - lib/json_api/configuration.rb
78
- - lib/json_api/controllers/base_controller.rb
79
- - lib/json_api/controllers/concerns/controller_helpers.rb
80
- - lib/json_api/controllers/concerns/resource_actions.rb
81
- - lib/json_api/controllers/relationships_controller.rb
82
- - lib/json_api/controllers/resources_controller.rb
83
- - lib/json_api/errors/parameter_not_allowed.rb
84
- - lib/json_api/railtie.rb
85
- - lib/json_api/resources/active_storage_blob_resource.rb
86
- - lib/json_api/resources/resource.rb
87
- - lib/json_api/resources/resource_loader.rb
88
- - lib/json_api/routing.rb
89
- - lib/json_api/serialization/deserializer.rb
90
- - lib/json_api/serialization/serializer.rb
91
- - lib/json_api/support/active_storage_support.rb
92
- - lib/json_api/support/collection_query.rb
93
- - lib/json_api/support/instrumentation.rb
94
- - lib/json_api/support/param_helpers.rb
95
- - lib/json_api/support/relationship_guard.rb
96
- - lib/json_api/support/relationship_helpers.rb
97
- - lib/json_api/support/resource_identifier.rb
98
- - lib/json_api/support/responders.rb
99
- - lib/json_api/support/response_helpers.rb
100
- - lib/json_api/support/sort_parsing.rb
101
- - lib/json_api/support/type_conversion.rb
102
- - lib/json_api/testing.rb
103
- - lib/json_api/testing/test_helper.rb
104
- - lib/json_api/version.rb
105
- - lib/rubocop/cop/custom/hash_value_omission.rb
106
- homepage: https://github.com/klaay/jpie
180
+ - lib/jpie/configuration.rb
181
+ - lib/jpie/controller.rb
182
+ - lib/jpie/controller/crud_actions.rb
183
+ - lib/jpie/controller/error_handling.rb
184
+ - lib/jpie/controller/parameter_parsing.rb
185
+ - lib/jpie/controller/rendering.rb
186
+ - lib/jpie/deserializer.rb
187
+ - lib/jpie/errors.rb
188
+ - lib/jpie/generators/resource_generator.rb
189
+ - lib/jpie/generators/templates/resource.rb.erb
190
+ - lib/jpie/railtie.rb
191
+ - lib/jpie/resource.rb
192
+ - lib/jpie/resource/attributable.rb
193
+ - lib/jpie/resource/inferrable.rb
194
+ - lib/jpie/resource/sortable.rb
195
+ - lib/jpie/serializer.rb
196
+ - lib/jpie/version.rb
197
+ homepage: https://github.com/emilkampp/jpie
107
198
  licenses:
108
199
  - MIT
109
200
  metadata:
201
+ allowed_push_host: https://rubygems.org
202
+ homepage_uri: https://github.com/emilkampp/jpie
203
+ source_code_uri: https://github.com/emilkampp/jpie.git
204
+ changelog_uri: https://github.com/emilkampp/jpie/blob/main/CHANGELOG.md
110
205
  rubygems_mfa_required: 'true'
111
206
  rdoc_options: []
112
207
  require_paths:
@@ -122,7 +217,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
122
217
  - !ruby/object:Gem::Version
123
218
  version: '0'
124
219
  requirements: []
125
- rubygems_version: 3.7.2
220
+ rubygems_version: 3.6.2
126
221
  specification_version: 4
127
- summary: JSON:API compliant Rails gem for producing and consuming JSON:API resources
222
+ summary: A resource-focused Rails library for developing JSON:API compliant servers
128
223
  test_files: []
data/.gitignore DELETED
@@ -1,21 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /_yardoc/
4
- /coverage/
5
- /doc/
6
- /pkg/
7
- /spec/reports/
8
- /tmp/
9
-
10
- # Gem builds
11
- *.gem
12
-
13
- # rspec failure tracking
14
- .rspec_status
15
-
16
- # test log files
17
- spec/dummy/log/*.log
18
- spec/dummy/log/*.log.*
19
-
20
- # dummy app tmp directory
21
- spec/dummy/tmp/
data/.rspec DELETED
@@ -1,3 +0,0 @@
1
- --format documentation
2
- --color
3
- --require spec_helper
data/.travis.yml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- sudo: false
3
- language: ruby
4
- cache: bundler
5
- rvm:
6
- - 2.6.10
7
- before_install: gem install bundler -v 1.17.2
data/Gemfile DELETED
@@ -1,21 +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 json_api.gemspec
8
- gemspec
9
-
10
- group :development, :test do
11
- gem 'appraisal', '~> 2.4'
12
- gem 'bundler', '~> 2.0'
13
- gem 'json_schemer', '~> 2.4'
14
- gem 'pundit', '~> 2.3'
15
- gem 'rake', '~> 13.0'
16
- gem 'rspec', '~> 3.12'
17
- gem 'rspec-rails', '~> 6.0'
18
- gem 'rubocop', '~> 1.0'
19
- gem 'rubocop-rails', '~> 2.0'
20
- gem 'sqlite3', '>= 2.1'
21
- end
data/Gemfile.lock DELETED
@@ -1,312 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- json_api (0.1.0)
5
- actionpack (>= 8.0.0)
6
- rails (>= 8.0.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- action_text-trix (2.1.15)
12
- railties
13
- actioncable (8.1.1)
14
- actionpack (= 8.1.1)
15
- activesupport (= 8.1.1)
16
- nio4r (~> 2.0)
17
- websocket-driver (>= 0.6.1)
18
- zeitwerk (~> 2.6)
19
- actionmailbox (8.1.1)
20
- actionpack (= 8.1.1)
21
- activejob (= 8.1.1)
22
- activerecord (= 8.1.1)
23
- activestorage (= 8.1.1)
24
- activesupport (= 8.1.1)
25
- mail (>= 2.8.0)
26
- actionmailer (8.1.1)
27
- actionpack (= 8.1.1)
28
- actionview (= 8.1.1)
29
- activejob (= 8.1.1)
30
- activesupport (= 8.1.1)
31
- mail (>= 2.8.0)
32
- rails-dom-testing (~> 2.2)
33
- actionpack (8.1.1)
34
- actionview (= 8.1.1)
35
- activesupport (= 8.1.1)
36
- nokogiri (>= 1.8.5)
37
- rack (>= 2.2.4)
38
- rack-session (>= 1.0.1)
39
- rack-test (>= 0.6.3)
40
- rails-dom-testing (~> 2.2)
41
- rails-html-sanitizer (~> 1.6)
42
- useragent (~> 0.16)
43
- actiontext (8.1.1)
44
- action_text-trix (~> 2.1.15)
45
- actionpack (= 8.1.1)
46
- activerecord (= 8.1.1)
47
- activestorage (= 8.1.1)
48
- activesupport (= 8.1.1)
49
- globalid (>= 0.6.0)
50
- nokogiri (>= 1.8.5)
51
- actionview (8.1.1)
52
- activesupport (= 8.1.1)
53
- builder (~> 3.1)
54
- erubi (~> 1.11)
55
- rails-dom-testing (~> 2.2)
56
- rails-html-sanitizer (~> 1.6)
57
- activejob (8.1.1)
58
- activesupport (= 8.1.1)
59
- globalid (>= 0.3.6)
60
- activemodel (8.1.1)
61
- activesupport (= 8.1.1)
62
- activerecord (8.1.1)
63
- activemodel (= 8.1.1)
64
- activesupport (= 8.1.1)
65
- timeout (>= 0.4.0)
66
- activestorage (8.1.1)
67
- actionpack (= 8.1.1)
68
- activejob (= 8.1.1)
69
- activerecord (= 8.1.1)
70
- activesupport (= 8.1.1)
71
- marcel (~> 1.0)
72
- activesupport (8.1.1)
73
- base64
74
- bigdecimal
75
- concurrent-ruby (~> 1.0, >= 1.3.1)
76
- connection_pool (>= 2.2.5)
77
- drb
78
- i18n (>= 1.6, < 2)
79
- json
80
- logger (>= 1.4.2)
81
- minitest (>= 5.1)
82
- securerandom (>= 0.3)
83
- tzinfo (~> 2.0, >= 2.0.5)
84
- uri (>= 0.13.1)
85
- appraisal (2.5.0)
86
- bundler
87
- rake
88
- thor (>= 0.14.0)
89
- ast (2.4.3)
90
- base64 (0.3.0)
91
- bigdecimal (3.3.1)
92
- builder (3.3.0)
93
- concurrent-ruby (1.3.5)
94
- connection_pool (2.5.4)
95
- crass (1.0.6)
96
- date (3.5.0)
97
- diff-lcs (1.6.2)
98
- drb (2.2.3)
99
- erb (6.0.0)
100
- erubi (1.13.1)
101
- globalid (1.3.0)
102
- activesupport (>= 6.1)
103
- hana (1.3.7)
104
- i18n (1.14.7)
105
- concurrent-ruby (~> 1.0)
106
- io-console (0.8.1)
107
- irb (1.15.3)
108
- pp (>= 0.6.0)
109
- rdoc (>= 4.0.0)
110
- reline (>= 0.4.2)
111
- json (2.16.0)
112
- json_schemer (2.4.0)
113
- bigdecimal
114
- hana (~> 1.3)
115
- regexp_parser (~> 2.0)
116
- simpleidn (~> 0.2)
117
- language_server-protocol (3.17.0.5)
118
- lint_roller (1.1.0)
119
- logger (1.7.0)
120
- loofah (2.24.1)
121
- crass (~> 1.0.2)
122
- nokogiri (>= 1.12.0)
123
- mail (2.9.0)
124
- logger
125
- mini_mime (>= 0.1.1)
126
- net-imap
127
- net-pop
128
- net-smtp
129
- marcel (1.1.0)
130
- mini_mime (1.1.5)
131
- minitest (5.26.2)
132
- net-imap (0.5.12)
133
- date
134
- net-protocol
135
- net-pop (0.1.2)
136
- net-protocol
137
- net-protocol (0.2.2)
138
- timeout
139
- net-smtp (0.5.1)
140
- net-protocol
141
- nio4r (2.7.5)
142
- nokogiri (1.18.10-aarch64-linux-gnu)
143
- racc (~> 1.4)
144
- nokogiri (1.18.10-aarch64-linux-musl)
145
- racc (~> 1.4)
146
- nokogiri (1.18.10-arm-linux-gnu)
147
- racc (~> 1.4)
148
- nokogiri (1.18.10-arm-linux-musl)
149
- racc (~> 1.4)
150
- nokogiri (1.18.10-arm64-darwin)
151
- racc (~> 1.4)
152
- nokogiri (1.18.10-x86_64-darwin)
153
- racc (~> 1.4)
154
- nokogiri (1.18.10-x86_64-linux-gnu)
155
- racc (~> 1.4)
156
- nokogiri (1.18.10-x86_64-linux-musl)
157
- racc (~> 1.4)
158
- parallel (1.27.0)
159
- parser (3.3.10.0)
160
- ast (~> 2.4.1)
161
- racc
162
- pp (0.6.3)
163
- prettyprint
164
- prettyprint (0.2.0)
165
- prism (1.6.0)
166
- psych (5.2.6)
167
- date
168
- stringio
169
- pundit (2.5.2)
170
- activesupport (>= 3.0.0)
171
- racc (1.8.1)
172
- rack (3.2.4)
173
- rack-session (2.1.1)
174
- base64 (>= 0.1.0)
175
- rack (>= 3.0.0)
176
- rack-test (2.2.0)
177
- rack (>= 1.3)
178
- rackup (2.2.1)
179
- rack (>= 3)
180
- rails (8.1.1)
181
- actioncable (= 8.1.1)
182
- actionmailbox (= 8.1.1)
183
- actionmailer (= 8.1.1)
184
- actionpack (= 8.1.1)
185
- actiontext (= 8.1.1)
186
- actionview (= 8.1.1)
187
- activejob (= 8.1.1)
188
- activemodel (= 8.1.1)
189
- activerecord (= 8.1.1)
190
- activestorage (= 8.1.1)
191
- activesupport (= 8.1.1)
192
- bundler (>= 1.15.0)
193
- railties (= 8.1.1)
194
- rails-dom-testing (2.3.0)
195
- activesupport (>= 5.0.0)
196
- minitest
197
- nokogiri (>= 1.6)
198
- rails-html-sanitizer (1.6.2)
199
- loofah (~> 2.21)
200
- nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
201
- railties (8.1.1)
202
- actionpack (= 8.1.1)
203
- activesupport (= 8.1.1)
204
- irb (~> 1.13)
205
- rackup (>= 1.0.0)
206
- rake (>= 12.2)
207
- thor (~> 1.0, >= 1.2.2)
208
- tsort (>= 0.2)
209
- zeitwerk (~> 2.6)
210
- rainbow (3.1.1)
211
- rake (13.3.1)
212
- rdoc (6.15.1)
213
- erb
214
- psych (>= 4.0.0)
215
- tsort
216
- regexp_parser (2.11.3)
217
- reline (0.6.3)
218
- io-console (~> 0.5)
219
- rspec (3.13.2)
220
- rspec-core (~> 3.13.0)
221
- rspec-expectations (~> 3.13.0)
222
- rspec-mocks (~> 3.13.0)
223
- rspec-core (3.13.6)
224
- rspec-support (~> 3.13.0)
225
- rspec-expectations (3.13.5)
226
- diff-lcs (>= 1.2.0, < 2.0)
227
- rspec-support (~> 3.13.0)
228
- rspec-mocks (3.13.7)
229
- diff-lcs (>= 1.2.0, < 2.0)
230
- rspec-support (~> 3.13.0)
231
- rspec-rails (6.1.5)
232
- actionpack (>= 6.1)
233
- activesupport (>= 6.1)
234
- railties (>= 6.1)
235
- rspec-core (~> 3.13)
236
- rspec-expectations (~> 3.13)
237
- rspec-mocks (~> 3.13)
238
- rspec-support (~> 3.13)
239
- rspec-support (3.13.6)
240
- rubocop (1.81.7)
241
- json (~> 2.3)
242
- language_server-protocol (~> 3.17.0.2)
243
- lint_roller (~> 1.1.0)
244
- parallel (~> 1.10)
245
- parser (>= 3.3.0.2)
246
- rainbow (>= 2.2.2, < 4.0)
247
- regexp_parser (>= 2.9.3, < 3.0)
248
- rubocop-ast (>= 1.47.1, < 2.0)
249
- ruby-progressbar (~> 1.7)
250
- unicode-display_width (>= 2.4.0, < 4.0)
251
- rubocop-ast (1.48.0)
252
- parser (>= 3.3.7.2)
253
- prism (~> 1.4)
254
- rubocop-rails (2.34.0)
255
- activesupport (>= 4.2.0)
256
- lint_roller (~> 1.1)
257
- rack (>= 1.1)
258
- rubocop (>= 1.75.0, < 2.0)
259
- rubocop-ast (>= 1.44.0, < 2.0)
260
- ruby-progressbar (1.13.0)
261
- securerandom (0.4.1)
262
- simpleidn (0.2.3)
263
- sqlite3 (2.8.0-aarch64-linux-gnu)
264
- sqlite3 (2.8.0-aarch64-linux-musl)
265
- sqlite3 (2.8.0-arm-linux-gnu)
266
- sqlite3 (2.8.0-arm-linux-musl)
267
- sqlite3 (2.8.0-arm64-darwin)
268
- sqlite3 (2.8.0-x86_64-darwin)
269
- sqlite3 (2.8.0-x86_64-linux-gnu)
270
- sqlite3 (2.8.0-x86_64-linux-musl)
271
- stringio (3.1.8)
272
- thor (1.4.0)
273
- timeout (0.4.4)
274
- tsort (0.2.0)
275
- tzinfo (2.0.6)
276
- concurrent-ruby (~> 1.0)
277
- unicode-display_width (3.2.0)
278
- unicode-emoji (~> 4.1)
279
- unicode-emoji (4.1.0)
280
- uri (1.1.1)
281
- useragent (0.16.11)
282
- websocket-driver (0.8.0)
283
- base64
284
- websocket-extensions (>= 0.1.0)
285
- websocket-extensions (0.1.5)
286
- zeitwerk (2.7.3)
287
-
288
- PLATFORMS
289
- aarch64-linux-gnu
290
- aarch64-linux-musl
291
- arm-linux-gnu
292
- arm-linux-musl
293
- arm64-darwin
294
- x86_64-darwin
295
- x86_64-linux-gnu
296
- x86_64-linux-musl
297
-
298
- DEPENDENCIES
299
- appraisal (~> 2.4)
300
- bundler (~> 2.0)
301
- json_api!
302
- json_schemer (~> 2.4)
303
- pundit (~> 2.3)
304
- rake (~> 13.0)
305
- rspec (~> 3.12)
306
- rspec-rails (~> 6.0)
307
- rubocop (~> 1.0)
308
- rubocop-rails (~> 2.0)
309
- sqlite3 (>= 2.1)
310
-
311
- BUNDLED WITH
312
- 2.7.2
data/bin/console DELETED
@@ -1,15 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- require "bundler/setup"
5
- require "json_api"
6
-
7
- # You can add fixtures and/or initialization code here to make experimenting
8
- # with your gem easier. You can also use a different console, if you like.
9
-
10
- # (If you use this, don't forget to add pry to your Gemfile!)
11
- # require "pry"
12
- # Pry.start
13
-
14
- require "irb"
15
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
@@ -1,2 +0,0 @@
1
- class UserMessageResource < MessageResource
2
- end