File: inherited_resources.gemspec

package info (click to toggle)
ruby-inherited-resources 1.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 824 kB
  • sloc: ruby: 4,388; makefile: 6
file content (28 lines) | stat: -rw-r--r-- 1,210 bytes parent folder | download
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
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.required_ruby_version = '>= 2.5'

  s.add_dependency("responders", ">= 2", "< 4")
  s.add_dependency("actionpack", ">= 5.2", "< 6.2")
  s.add_dependency("railties", ">= 5.2", "< 6.2")
  s.add_dependency("has_scope",  "~> 0.6")
end