-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdsfr-form_builder.gemspec
29 lines (23 loc) · 1.19 KB
/
dsfr-form_builder.gemspec
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
$LOAD_PATH.push File.expand_path('lib', __dir__)
METADATA = {
'bug_tracker_uri' => 'https://github.com/betagouv/dsfr-form-builder/issues',
'changelog_uri' => 'https://github.com/betagouv/dsfr-form-builder/releases',
'documentation_uri' => 'https://www.rubydoc.info/gems/dsfr-form-builder/',
'homepage_uri' => 'https://github.com/betagouv/dsfr-form-builder',
'source_code_uri' => 'https://github.com/betagouv/dsfr-form-builder'
}.freeze
Gem::Specification.new do |spec|
spec.name = 'dsfr-form_builder'
spec.version = '0.0.2'
spec.authors = [ 'BetaGouv developers' ]
spec.email = [ '[email protected]' ]
spec.homepage = 'https://github.com/betagouv/dsfr-form-builder'
spec.summary = "Ruby on Rails form builder pour le Système de Design de l'État (DSFR)"
spec.description = "Cette librairie de composants vise à simplifier la création de formulaire au DSFR (Système de Design de l'État) dans les applications web utilisant Ruby On Rails"
spec.license = 'MIT'
spec.files = Dir['lib/**/*']
spec.required_ruby_version = '>= 3.2'
%w[actionview activemodel activesupport].each do |lib|
spec.add_dependency(lib, '>= 6.1', '< 9.0')
end
end