It's 2014 and the homepage is now activerecord-hackery

This commit is contained in:
jonatack 2014-01-02 10:27:52 +01:00
parent f079ab476d
commit 9cfd0251b5
2 changed files with 12 additions and 5 deletions

View File

@ -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)

View File

@ -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,8 +28,15 @@ Gem::Specification.new do |s|
s.add_development_dependency 'mysql2', '0.3.14'
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.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
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