-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathsimple_form.gemspec
More file actions
36 lines (31 loc) · 1.4 KB
/
simple_form.gemspec
File metadata and controls
36 lines (31 loc) · 1.4 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
36
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "simple_form/version"
Gem::Specification.new do |s|
s.name = "simple_form"
s.version = SimpleForm::VERSION.dup
s.platform = Gem::Platform::RUBY
s.summary = "Forms made easy!"
s.email = "[email protected]"
s.homepage = "https://github.com/heartcombo/simple_form"
s.description = "Forms made easy!"
s.authors = ['José Valim', 'Carlos Antonio', 'Rafael França']
s.license = "MIT"
s.metadata = {
"homepage_uri" => "https://github.com/heartcombo/simple_form",
"documentation_uri" => "https://rubydoc.info/github/heartcombo/simple_form",
"changelog_uri" => "https://github.com/heartcombo/simple_form/blob/main/CHANGELOG.md",
"source_code_uri" => "https://github.com/heartcombo/simple_form",
"bug_tracker_uri" => "https://github.com/heartcombo/simple_form/issues",
"wiki_uri" => "https://github.com/heartcombo/simple_form/wiki"
}
s.files = Dir["CHANGELOG.md", "MIT-LICENSE", "README.md", "lib/**/*"]
s.require_paths = ["lib"]
s.required_ruby_version = ">= 2.7.0"
s.add_dependency "activemodel", ">= 7.0"
s.add_dependency "actionpack", ">= 7.0"
s.add_development_dependency "country_select"
s.add_development_dependency "minitest", "< 6"
s.add_development_dependency "rake"
s.add_development_dependency "rdoc"
end