forked from activeadmin/inherited_resources
-
Notifications
You must be signed in to change notification settings - Fork 6
/
inherited_resources.gemspec
30 lines (24 loc) · 1.23 KB
/
inherited_resources.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
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "inherited_resources/version"
Gem::Specification.new do |s|
s.name = "inherited_resources"
s.version = InheritedResources::VERSION.dup
s.platform = Gem::Platform::RUBY
s.summary = "Inherited Resources speeds up development by making your controllers inherit all restful actions so you just have to focus on what is important."
s.homepage = "https://github.com/activeadmin/inherited_resources"
s.description = <<~MSG
Inherited Resources speeds up development by making your controllers inherit all restful actions so you just have to focus on what is important.
It makes your controllers more powerful and cleaner at the same time.
MSG
s.authors = ['José Valim', 'Rafael Mendonça França']
s.license = "MIT"
s.files = Dir["app/**/*", "lib/**/*", "README.md", "MIT-LICENSE"]
s.require_paths = ["lib"]
s.metadata = { "rubygems_mfa_required" => "true" }
s.required_ruby_version = '>= 2.7'
s.add_dependency("responders", ">= 2", "< 4")
s.add_dependency("actionpack", ">= 6.0", "< 7.1")
s.add_dependency("railties", ">= 6.0", "< 7.1")
s.add_dependency("has_scope", "~> 0.6")
end