-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstructured_params.gemspec
More file actions
35 lines (30 loc) · 1.12 KB
/
structured_params.gemspec
File metadata and controls
35 lines (30 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# frozen_string_literal: true
# rbs_inline: enabled
require_relative 'lib/structured_params/version'
Gem::Specification.new do |spec|
spec.name = 'structured_params'
spec.version = StructuredParams::VERSION
spec.authors = ['Mizuki Yamamoto']
spec.email = ['mizuki-y@syati.info']
spec.summary = 'Type-safe parameter validation and form objects for Rails.'
spec.description = ''
spec.homepage = 'https://github.com/Syati/structured_params'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.2.0'
spec.require_paths = ['lib']
spec.files = Dir[
'LICENSE.txt',
'CHANGELOG.md',
'lib/**/*.rb',
'sig/**/*.rbs'
]
spec.metadata = {
'homepage_uri' => 'https://github.com/Syati/structured_params#readme',
'changelog_uri' => 'https://github.com/Syati/structured_params/blob/main/CHANGELOG.md',
'bug_tracker_uri' => 'https://github.com/Syati/structured_params/issues',
'source_code_uri' => 'https://github.com/Syati/structured_params',
'rubygems_mfa_required' => 'true'
}
spec.add_dependency 'actionpack', '>= 7.2', '< 9.0'
spec.add_dependency 'activemodel', '>= 7.2', '< 9.0'
end