-
-
Notifications
You must be signed in to change notification settings - Fork 825
Expand file tree
/
Copy pathransack.gemspec
More file actions
34 lines (28 loc) · 1.53 KB
/
ransack.gemspec
File metadata and controls
34 lines (28 loc) · 1.53 KB
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "ransack/version"
Gem::Specification.new do |s|
s.name = "ransack"
s.version = Ransack::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Ernie Miller", "Ryan Bigg", "Jon Atack", "Sean Carroll", "David Rodríguez"]
s.email = ["ernie@erniemiller.org", "radarlistener@gmail.com", "jonnyatack@gmail.com", "magma.craters2h@icloud.com"]
s.homepage = "https://github.com/activerecord-hackery/ransack"
s.summary = %q{Object-based searching for Active Record.}
s.description = %q{Powerful object-based searching and filtering for Active Record with advanced features like complex boolean queries, association searching, custom predicates and i18n support.}
# BREAKING CHANGE: Ruby version requirement changed from >= 3.0 to >= 3.1.
# Be sure to mention this breaking change in the PR description and changelog.
s.required_ruby_version = '>= 3.1'
s.license = 'MIT'
s.metadata = {
'changelog_uri' => "#{s.homepage}/releases/tag/v#{s.version}"
}
s.metadata['changelog_uri'] = 'https://github.com/activerecord-hackery/ransack/blob/main/CHANGELOG.md'
s.add_dependency 'activerecord', '>= 7.2'
s.add_dependency 'activesupport', '>= 7.2'
s.add_dependency 'i18n'
s.files = Dir["README.md", "LICENSE", "lib/**/*"]
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end