mirror of
https://github.com/activerecord-hackery/ransack.git
synced 2022-11-09 13:47:45 -05:00
It's 2014, and the homepage is now activerecord-hackery
[ci skip]
This commit is contained in:
parent
5ebfa76c33
commit
eaec85a532
2 changed files with 9 additions and 4 deletions
|
@ -205,4 +205,4 @@ To support the project:
|
|||
|
||||
## Copyright
|
||||
|
||||
Copyright © 2011 [Ernie Miller](http://twitter.com/erniemiller)
|
||||
Copyright © 2011-2014 [Ernie Miller](http://twitter.com/erniemiller)
|
||||
|
|
|
@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|||
s.platform = Gem::Platform::RUBY
|
||||
s.authors = ["Ernie Miller", "Ryan Bigg"]
|
||||
s.email = ["ernie@erniemiller.org", "radarlistener@gmail.com"]
|
||||
s.homepage = "https://github.com/ernie/ransack"
|
||||
s.homepage = "https://github.com/activerecord-hackery/ransack"
|
||||
s.summary = %q{Object-based searching for ActiveRecord (currently).}
|
||||
s.description = %q{Ransack is the successor to the MetaSearch gem. It improves and expands upon MetaSearch's functionality, but does not have a 100%-compatible API.}
|
||||
s.license = 'MIT'
|
||||
|
@ -28,10 +28,15 @@ Gem::Specification.new do |s|
|
|||
s.add_development_dependency 'mysql2', '0.3.13'
|
||||
s.add_development_dependency 'pry', '0.9.12.2'
|
||||
|
||||
s.files = `git ls-files`.split("\n")
|
||||
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
||||
s.files = `git ls-files`
|
||||
.split("\n")
|
||||
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue