orthoses-audited 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 56165b93e88edf59b260e62f2e61dd57c0281b9f44a05df4514b06e207c1fd8e
4
+ data.tar.gz: 7f96f86474a86c5feab8c5db1a554f20349bda706a6df93b40c13a1b5b601d4d
5
+ SHA512:
6
+ metadata.gz: f25624d44dc7e3b429b9d2d07a3a0d3a41ed0e92c408f81a3b81a87706d45ccf222ff10c971dcd20aed54c491a134d8fb3e9d120d04d9c988ed210ab1606d2d3
7
+ data.tar.gz: b45c6d773b50c16e708b89acbd06ed15949684dcc4ccc3a8079e3422273f31091316a50b0ba025bd187c0086bcea29233d8be12025b888389e8f3c2f8205f7a3
@@ -0,0 +1,33 @@
1
+ name: Ruby
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+ pull_request:
9
+
10
+ jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ name: Ruby ${{ matrix.ruby }}
14
+ strategy:
15
+ matrix:
16
+ ruby:
17
+ - '3.2'
18
+ - '3.3'
19
+ - '3.4'
20
+ - '4.0'
21
+ steps:
22
+ - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
23
+ - name: Remove Gemfile.lock for CI
24
+ run: rm Gemfile.lock
25
+ - name: Set up Ruby
26
+ uses: ruby/setup-ruby@8a836efbcebe5de0fe86b48a775b7a31b5c70c93 # v1.277.0
27
+ with:
28
+ ruby-version: ${{ matrix.ruby }}
29
+ bundler-cache: true
30
+ - name: Run the default task
31
+ run: |
32
+ bundle exec rbs collection update
33
+ bundle exec rake
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2025-12-30
4
+
5
+ - Initial release
@@ -0,0 +1,10 @@
1
+ # Code of Conduct
2
+
3
+ "orthoses-audited" follows [The Ruby Community Conduct Guideline](https://www.ruby-lang.org/en/conduct) in all "collaborative space", which is defined as community communications channels (such as mailing lists, submitted patches, commit comments, etc.):
4
+
5
+ * Participants will be tolerant of opposing views.
6
+ * Participants must ensure that their language and actions are free of personal attacks and disparaging personal remarks.
7
+ * When interpreting the words and actions of others, participants should always assume good intentions.
8
+ * Behaviour which can be reasonably considered harassment will not be tolerated.
9
+
10
+ If you have any concerns about behaviour within this project, please contact us at ["yakiyaki_ikayaki@yahoo.co.jp"](mailto:"yakiyaki_ikayaki@yahoo.co.jp").
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025 masatoshi_moritsuka
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,52 @@
1
+ # Orthoses::Audited
2
+
3
+ [Orthoses](https://github.com/ksss/orthoses) extension for [Audited](https://github.com/collectiveidea/audited).
4
+ Orthoses::Audited automatically generates RBS for methods added by Audited.
5
+
6
+ ```rb
7
+ User.first!.revisions #=> Array[User]
8
+ ```
9
+
10
+ ## Installation
11
+
12
+ Install the gem and add to the application's Gemfile by executing:
13
+
14
+ ```bash
15
+ bundle add orthoses-audited
16
+ ```
17
+
18
+ If bundler is not being used to manage dependencies, install the gem by executing:
19
+
20
+ ```bash
21
+ gem install orthoses-audited
22
+ ```
23
+
24
+ ## Usage
25
+
26
+ audited depends on rails.
27
+ orthoses-audited is strongly recommended to use with [orthoses-rails](https://github.com/ksss/orthoses-rails).
28
+
29
+ ```rb
30
+ use Orthoses::Audited
31
+ use Orthoses::Audited, audit_class: 'CustomAudit'
32
+ ```
33
+
34
+ - `audit_class` is optional. You can specify custom `Audit` model. Default is `Audited::Audit`.
35
+
36
+ ## Development
37
+
38
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
39
+
40
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
41
+
42
+ ## Contributing
43
+
44
+ Bug reports and pull requests are welcome on GitHub at https://github.com/sanfrecce-osaka/orthoses-audited. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/sanfrecce-osaka/orthoses-audited/blob/main/CODE_OF_CONDUCT.md).
45
+
46
+ ## License
47
+
48
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
49
+
50
+ ## Code of Conduct
51
+
52
+ Everyone interacting in the Orthoses::Audited project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/sanfrecce-osaka/orthoses-audited/blob/main/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task default: :spec
data/Steepfile ADDED
@@ -0,0 +1,7 @@
1
+ D = Steep::Diagnostic
2
+
3
+ target :lib do
4
+ signature 'sig'
5
+ check 'lib'
6
+ configure_code_diagnostics(D::Ruby.strict)
7
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Orthoses
4
+ class Audited
5
+ VERSION = '0.1.0'
6
+ end
7
+ end
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'orthoses'
4
+ require_relative 'audited/version'
5
+
6
+ module Orthoses
7
+ class Audited
8
+ def initialize(loader, audit_class: 'Audited::Audit')
9
+ @loader = loader
10
+ @audit_class = audit_class
11
+ end
12
+
13
+ def call
14
+ include = CallTracer::Lazy.new
15
+ store = include.trace('Audited::Auditor::ClassMethods#audited') do
16
+ @loader.call
17
+ end
18
+
19
+ include.captures.each do |capture|
20
+ base_name = Utils.module_name(capture.method.receiver) or next
21
+ sig = 'extend Audited::Auditor::ClassMethods'
22
+ if !store['ActiveRecord::Base'].body.include?(sig)
23
+ store['ActiveRecord::Base'] << sig
24
+ end
25
+ store[base_name] << 'extend Audited::Auditor::AuditedClassMethods'
26
+ store[base_name] << "include Audited::Auditor::AuditedInstanceMethods[#{base_name}, #{@audit_class}, #{@audit_class}::ActiveRecord_Relation]"
27
+ store[base_name] << 'attr_accessor audit_version: Integer?'
28
+ store[base_name] << 'attr_accessor audit_comment: String?'
29
+ store["#{base_name}::ActiveRecord_Relation"] << 'include Audited::Auditor::AuditedClassMethods'
30
+ store["#{base_name}::ActiveRecord_Associations_CollectionProxy"] << 'include Audited::Auditor::AuditedClassMethods'
31
+ end
32
+ store
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,336 @@
1
+ ---
2
+ path: ".gem_rbs_collection"
3
+ gems:
4
+ - name: actionpack
5
+ version: '7.2'
6
+ source:
7
+ type: git
8
+ name: ruby/gem_rbs_collection
9
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
10
+ remote: https://github.com/ruby/gem_rbs_collection.git
11
+ repo_dir: gems
12
+ - name: actionview
13
+ version: '6.0'
14
+ source:
15
+ type: git
16
+ name: ruby/gem_rbs_collection
17
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
18
+ remote: https://github.com/ruby/gem_rbs_collection.git
19
+ repo_dir: gems
20
+ - name: activemodel
21
+ version: '7.1'
22
+ source:
23
+ type: git
24
+ name: ruby/gem_rbs_collection
25
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
26
+ remote: https://github.com/ruby/gem_rbs_collection.git
27
+ repo_dir: gems
28
+ - name: activerecord
29
+ version: '8.0'
30
+ source:
31
+ type: git
32
+ name: ruby/gem_rbs_collection
33
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
34
+ remote: https://github.com/ruby/gem_rbs_collection.git
35
+ repo_dir: gems
36
+ - name: activesupport
37
+ version: '7.0'
38
+ source:
39
+ type: git
40
+ name: ruby/gem_rbs_collection
41
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
42
+ remote: https://github.com/ruby/gem_rbs_collection.git
43
+ repo_dir: gems
44
+ - name: ast
45
+ version: '2.4'
46
+ source:
47
+ type: git
48
+ name: ruby/gem_rbs_collection
49
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
50
+ remote: https://github.com/ruby/gem_rbs_collection.git
51
+ repo_dir: gems
52
+ - name: audited
53
+ version: '5.8'
54
+ source:
55
+ type: git
56
+ name: ruby/gem_rbs_collection
57
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
58
+ remote: https://github.com/ruby/gem_rbs_collection.git
59
+ repo_dir: gems
60
+ - name: base64
61
+ version: 0.3.0
62
+ source:
63
+ type: rubygems
64
+ - name: bigdecimal
65
+ version: '4.0'
66
+ source:
67
+ type: git
68
+ name: ruby/gem_rbs_collection
69
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
70
+ remote: https://github.com/ruby/gem_rbs_collection.git
71
+ repo_dir: gems
72
+ - name: cgi
73
+ version: '0.5'
74
+ source:
75
+ type: git
76
+ name: ruby/gem_rbs_collection
77
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
78
+ remote: https://github.com/ruby/gem_rbs_collection.git
79
+ repo_dir: gems
80
+ - name: concurrent-ruby
81
+ version: '1.1'
82
+ source:
83
+ type: git
84
+ name: ruby/gem_rbs_collection
85
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
86
+ remote: https://github.com/ruby/gem_rbs_collection.git
87
+ repo_dir: gems
88
+ - name: connection_pool
89
+ version: '2.4'
90
+ source:
91
+ type: git
92
+ name: ruby/gem_rbs_collection
93
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
94
+ remote: https://github.com/ruby/gem_rbs_collection.git
95
+ repo_dir: gems
96
+ - name: csv
97
+ version: '3.3'
98
+ source:
99
+ type: git
100
+ name: ruby/gem_rbs_collection
101
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
102
+ remote: https://github.com/ruby/gem_rbs_collection.git
103
+ repo_dir: gems
104
+ - name: date
105
+ version: '0'
106
+ source:
107
+ type: stdlib
108
+ - name: delegate
109
+ version: '0'
110
+ source:
111
+ type: stdlib
112
+ - name: diff-lcs
113
+ version: '1.5'
114
+ source:
115
+ type: git
116
+ name: ruby/gem_rbs_collection
117
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
118
+ remote: https://github.com/ruby/gem_rbs_collection.git
119
+ repo_dir: gems
120
+ - name: digest
121
+ version: '0'
122
+ source:
123
+ type: stdlib
124
+ - name: erb
125
+ version: '0'
126
+ source:
127
+ type: stdlib
128
+ - name: ffi
129
+ version: 1.17.3
130
+ source:
131
+ type: rubygems
132
+ - name: fileutils
133
+ version: '0'
134
+ source:
135
+ type: stdlib
136
+ - name: forwardable
137
+ version: '0'
138
+ source:
139
+ type: stdlib
140
+ - name: i18n
141
+ version: '1.10'
142
+ source:
143
+ type: git
144
+ name: ruby/gem_rbs_collection
145
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
146
+ remote: https://github.com/ruby/gem_rbs_collection.git
147
+ repo_dir: gems
148
+ - name: io-console
149
+ version: '0'
150
+ source:
151
+ type: stdlib
152
+ - name: json
153
+ version: '0'
154
+ source:
155
+ type: stdlib
156
+ - name: listen
157
+ version: '3.9'
158
+ source:
159
+ type: git
160
+ name: ruby/gem_rbs_collection
161
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
162
+ remote: https://github.com/ruby/gem_rbs_collection.git
163
+ repo_dir: gems
164
+ - name: logger
165
+ version: '0'
166
+ source:
167
+ type: stdlib
168
+ - name: minitest
169
+ version: '5.25'
170
+ source:
171
+ type: git
172
+ name: ruby/gem_rbs_collection
173
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
174
+ remote: https://github.com/ruby/gem_rbs_collection.git
175
+ repo_dir: gems
176
+ - name: monitor
177
+ version: '0'
178
+ source:
179
+ type: stdlib
180
+ - name: mutex_m
181
+ version: 0.3.0
182
+ source:
183
+ type: rubygems
184
+ - name: nokogiri
185
+ version: '1.11'
186
+ source:
187
+ type: git
188
+ name: ruby/gem_rbs_collection
189
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
190
+ remote: https://github.com/ruby/gem_rbs_collection.git
191
+ repo_dir: gems
192
+ - name: openssl
193
+ version: '0'
194
+ source:
195
+ type: stdlib
196
+ - name: optparse
197
+ version: '0'
198
+ source:
199
+ type: stdlib
200
+ - name: orthoses
201
+ version: 1.20.2
202
+ source:
203
+ type: rubygems
204
+ - name: parser
205
+ version: '3.2'
206
+ source:
207
+ type: git
208
+ name: ruby/gem_rbs_collection
209
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
210
+ remote: https://github.com/ruby/gem_rbs_collection.git
211
+ repo_dir: gems
212
+ - name: pp
213
+ version: '0'
214
+ source:
215
+ type: stdlib
216
+ - name: prettyprint
217
+ version: '0'
218
+ source:
219
+ type: stdlib
220
+ - name: prism
221
+ version: 1.7.0
222
+ source:
223
+ type: rubygems
224
+ - name: rack
225
+ version: '2.2'
226
+ source:
227
+ type: git
228
+ name: ruby/gem_rbs_collection
229
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
230
+ remote: https://github.com/ruby/gem_rbs_collection.git
231
+ repo_dir: gems
232
+ - name: rails-dom-testing
233
+ version: '2.0'
234
+ source:
235
+ type: git
236
+ name: ruby/gem_rbs_collection
237
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
238
+ remote: https://github.com/ruby/gem_rbs_collection.git
239
+ repo_dir: gems
240
+ - name: rails-html-sanitizer
241
+ version: '1.6'
242
+ source:
243
+ type: git
244
+ name: ruby/gem_rbs_collection
245
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
246
+ remote: https://github.com/ruby/gem_rbs_collection.git
247
+ repo_dir: gems
248
+ - name: railties
249
+ version: '6.0'
250
+ source:
251
+ type: git
252
+ name: ruby/gem_rbs_collection
253
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
254
+ remote: https://github.com/ruby/gem_rbs_collection.git
255
+ repo_dir: gems
256
+ - name: rainbow
257
+ version: '3.0'
258
+ source:
259
+ type: git
260
+ name: ruby/gem_rbs_collection
261
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
262
+ remote: https://github.com/ruby/gem_rbs_collection.git
263
+ repo_dir: gems
264
+ - name: rake
265
+ version: '13.0'
266
+ source:
267
+ type: git
268
+ name: ruby/gem_rbs_collection
269
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
270
+ remote: https://github.com/ruby/gem_rbs_collection.git
271
+ repo_dir: gems
272
+ - name: rbs
273
+ version: 3.10.0
274
+ source:
275
+ type: rubygems
276
+ - name: rdoc
277
+ version: '0'
278
+ source:
279
+ type: stdlib
280
+ - name: securerandom
281
+ version: '0'
282
+ source:
283
+ type: stdlib
284
+ - name: singleton
285
+ version: '0'
286
+ source:
287
+ type: stdlib
288
+ - name: socket
289
+ version: '0'
290
+ source:
291
+ type: stdlib
292
+ - name: stringio
293
+ version: '0'
294
+ source:
295
+ type: stdlib
296
+ - name: strscan
297
+ version: '0'
298
+ source:
299
+ type: stdlib
300
+ - name: tempfile
301
+ version: '0'
302
+ source:
303
+ type: stdlib
304
+ - name: thor
305
+ version: '1.2'
306
+ source:
307
+ type: git
308
+ name: ruby/gem_rbs_collection
309
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
310
+ remote: https://github.com/ruby/gem_rbs_collection.git
311
+ repo_dir: gems
312
+ - name: time
313
+ version: '0'
314
+ source:
315
+ type: stdlib
316
+ - name: timeout
317
+ version: '0'
318
+ source:
319
+ type: stdlib
320
+ - name: tsort
321
+ version: '0'
322
+ source:
323
+ type: stdlib
324
+ - name: tzinfo
325
+ version: '2.0'
326
+ source:
327
+ type: git
328
+ name: ruby/gem_rbs_collection
329
+ revision: f2826d40140e8d87f43a44375bb277ba7b7b2e19
330
+ remote: https://github.com/ruby/gem_rbs_collection.git
331
+ repo_dir: gems
332
+ - name: uri
333
+ version: '0'
334
+ source:
335
+ type: stdlib
336
+ gemfile_lock_path: Gemfile.lock
@@ -0,0 +1,19 @@
1
+ # Download sources
2
+ sources:
3
+ - type: git
4
+ name: ruby/gem_rbs_collection
5
+ remote: https://github.com/ruby/gem_rbs_collection.git
6
+ revision: main
7
+ repo_dir: gems
8
+
9
+ # You can specify local directories as sources also.
10
+ # - type: local
11
+ # path: path/to/your/local/repository
12
+
13
+ # A directory to install the downloaded RBSs
14
+ path: .gem_rbs_collection
15
+
16
+ # gems:
17
+ # # If you want to avoid installing rbs files for gems, you can specify them here.
18
+ # - name: GEM_NAME
19
+ # ignore: true
@@ -0,0 +1,16 @@
1
+ module Orthoses
2
+ class Audited
3
+ interface _Loader
4
+ def call: () -> Store
5
+ end
6
+
7
+ VERSION: String
8
+
9
+ @loader: _Loader
10
+ @audit_class: String
11
+
12
+ def initialize: (_Loader loader, ?audit_class: String) -> void
13
+
14
+ def call: () -> Store
15
+ end
16
+ end
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: orthoses-audited
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - masatoshi_moritsuka
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: audited
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '0'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '0'
26
+ - !ruby/object:Gem::Dependency
27
+ name: orthoses
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ description: Orthoses middleware audited
41
+ email:
42
+ - yakiyaki_ikayaki@yahoo.co.jp
43
+ executables: []
44
+ extensions: []
45
+ extra_rdoc_files: []
46
+ files:
47
+ - ".github/workflows/main.yml"
48
+ - CHANGELOG.md
49
+ - CODE_OF_CONDUCT.md
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - Steepfile
54
+ - lib/orthoses/audited.rb
55
+ - lib/orthoses/audited/version.rb
56
+ - rbs_collection.lock.yaml
57
+ - rbs_collection.yaml
58
+ - sig/orthoses/audited.rbs
59
+ homepage: https://github.com/sanfrecce-osaka/orthoses-audited
60
+ licenses:
61
+ - MIT
62
+ metadata:
63
+ homepage_uri: https://github.com/sanfrecce-osaka/orthoses-audited
64
+ source_code_uri: https://github.com/sanfrecce-osaka/orthoses-audited
65
+ changelog_uri: https://github.com/sanfrecce-osaka/orthoses-audited
66
+ rubygems_mfa_required: 'true'
67
+ rdoc_options: []
68
+ require_paths:
69
+ - lib
70
+ required_ruby_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: 3.2.0
75
+ required_rubygems_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ version: '0'
80
+ requirements: []
81
+ rubygems_version: 4.0.3
82
+ specification_version: 4
83
+ summary: Orthoses middleware for audited
84
+ test_files: []