refills.gemspec in refills-0.0.2 vs refills.gemspec in refills-0.1.0

- old
+ new

@@ -1,23 +1,22 @@ # coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'refills/version' -Gem::Specification.new do |spec| - spec.name = "refills" - spec.version = Refills::VERSION - spec.authors = ["Joël Quenneville", "Magnus Gyllensward", "Christian Reuter", "Lisa Sy", "Paul Smith"] - spec.email = ["magnus@thoughtbot.com"] - spec.description = %q{Refills} - spec.summary = %q{Refills} - spec.homepage = "http://thoughtbot.github.io/refills/" - spec.license = "MIT" +Gem::Specification.new do |s| + s.name = 'refills' + s.version = Refills::VERSION + s.authors = ['Christian Reuter', 'Joël Quenneville', 'Lisa Sy', 'Magnus Gyllensward', 'Paul Smith', 'Tyson Gach'] + s.email = 'design+bourbon@thoughtbot.com' + s.description = 'Prepackaged patterns and components built with Bourbon, Neat and Bitters.' + s.summary = 'Prepackaged patterns and components built with Bourbon, Neat and Bitters.' + s.homepage = 'http://refills.bourbon.io' + s.license = 'MIT' - spec.files = `git ls-files`.split($/) - spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } - spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) - spec.require_paths = ["lib"] + s.files = `git ls-files`.split($/) + s.test_files = s.files.grep(%r{^(test|spec|features)/}) + s.require_paths = ['lib'] - spec.add_development_dependency "bundler", "~> 1.3" - spec.add_development_dependency "rake" + s.add_development_dependency 'bundler', '~> 1.3' + s.add_development_dependency 'rake' end