-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrestomatic.gemspec
More file actions
25 lines (20 loc) · 954 Bytes
/
restomatic.gemspec
File metadata and controls
25 lines (20 loc) · 954 Bytes
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
require_relative "lib/restomatic/version"
Gem::Specification.new do |spec|
spec.name = "restomatic"
spec.version = Restomatic::VERSION
spec.authors = ["Brad Gessler"]
spec.email = ["bradgessler@gmail.com"]
spec.homepage = "https://github.com/rubymonolith/restomatic"
spec.summary = "Better route mappers for Rails applications"
spec.description = "Provides cleaner, more intuitive helpers for defining RESTful routes with proper scoping and namespacing in Rails"
spec.license = "MIT"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = spec.homepage
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.add_dependency "rails", ">= 7.0"
spec.required_ruby_version = ">= 3.0"
end