diff --git a/twhois.gemspec b/twhois.gemspec index 21f834e..c40abb8 100644 --- a/twhois.gemspec +++ b/twhois.gemspec @@ -1,23 +1,23 @@ # -*- encoding: utf-8 -*- -$:.push File.expand_path("../lib", __FILE__) -require "twhois/version" +$:.push File.expand_path('../lib', __FILE__) +require 'twhois/version' Gem::Specification.new do |s| - s.name = "twhois" + s.name = 'twhois' s.version = Twhois::VERSION s.platform = Gem::Platform::RUBY - s.authors = ["TODO: Write your name"] - s.email = ["TODO: Write your email address"] - s.homepage = "" - s.summary = %q{TODO: Write a gem summary} - s.description = %q{TODO: Write a gem description} + s.authors = ['Jim Myhrberg'] + s.email = ['contact@jimeh.me'] + s.homepage = 'https://github.com/jimeh/twhois' + s.summary = 'Whois-like Ruby Gem for Twitter users' + s.description = 'Whois-like Ruby Gem for Twitter users' - s.rubyforge_project = "twhois" + s.rubyforge_project = 'twhois' 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"] + s.require_paths = ['lib'] s.add_runtime_dependency 'json_pure', '>= 1.0.0'