From 9cfd0251b5ddc6b985f6070521b7225aec89db56 Mon Sep 17 00:00:00 2001 From: jonatack Date: Thu, 2 Jan 2014 10:27:52 +0100 Subject: [PATCH] It's 2014 and the homepage is now activerecord-hackery --- README.md | 2 +- ransack.gemspec | 15 +++++++++++---- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2ea4568..140fa95 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/ransack.gemspec b/ransack.gemspec index 2314460..0713181 100644 --- a/ransack.gemspec +++ b/ransack.gemspec @@ -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