-
-
Notifications
You must be signed in to change notification settings - Fork 393
/
inherited_resources.gemspec
31 lines (25 loc) · 1.24 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
31
# frozen_string_literal: true
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 = '>= 3.1'
s.add_dependency("responders", ">= 2")
s.add_dependency("actionpack", ">= 7.0")
s.add_dependency("railties", ">= 7.0")
s.add_dependency("has_scope", ">= 0.6")
end