-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjaso.gemspec
35 lines (28 loc) · 1.32 KB
/
jaso.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
30
31
32
33
34
35
require_relative "lib/jaso/version"
Gem::Specification.new do |spec|
spec.name = "jaso"
spec.version = Jaso::VERSION
spec.authors = ["Vinicius Meneses"]
spec.email = ["vinicius.meneses04@gmail.com"]
spec.license = "MIT"
spec.summary = "Just Another Service Object"
spec.description = "Just Another Service Object"
spec.homepage = "https://github.com/viniciusmeneses/jaso"
spec.metadata = {
"homepage_uri" => "https://github.com/viniciusmeneses/jaso",
"documentation_uri" => "https://rubydoc.info/github/viniciusmeneses/jaso",
"changelog_uri" => "https://github.com/viniciusmeneses/jaso/blob/main/CHANGELOG.md",
"source_code_uri" => "https://github.com/viniciusmeneses/jaso",
"bug_tracker_uri" => "https://github.com/viniciusmeneses/jaso/issues"
}
spec.files = Dir["lib/**/*", "CHANGELOG.md", "README.md", "LICENSE", "Gemfile", "jaso.gemspec"]
spec.require_paths = ["lib"]
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = ">= 2.5.0"
spec.add_development_dependency "rspec", ">= 3.12"
spec.add_development_dependency "simplecov", ">= 0.22"
spec.add_development_dependency "standard", ">= 1.7"
spec.add_development_dependency "rubocop", ">= 1.25"
spec.add_development_dependency "rubocop-performance", ">= 1.13"
spec.add_development_dependency "rubocop-rspec", ">= 2.10"
end