testrocket.gemspec in testrocket-0.0.2 vs testrocket.gemspec in testrocket-1.0.0

- old
+ new

@@ -1,21 +1,21 @@ # -*- encoding: utf-8 -*- -$:.push File.expand_path("../lib", __FILE__) -require "testrocket/version" +$:.push File.expand_path('../lib', __FILE__) +require 'testrocket' Gem::Specification.new do |s| - s.name = "testrocket" - s.version = Testrocket::VERSION + s.name = 'testrocket' + s.version = TestRocket::VERSION s.platform = Gem::Platform::RUBY - s.authors = ["Peter Cooper","Christoph Grabo"] - s.email = ["git@peterc.org","chris@dinarrr.com"] - s.homepage = "http://github.com/peterc/testrocket" + s.authors = ['Peter Cooper', 'Christoph Grabo'] + s.email = %w[git@peterc.org chris@dinarrr.com] + s.homepage = 'http://github.com/peterc/testrocket' s.summary = %q{A super lightweight lamdba-based testing library for Ruby} s.description = %q{A super lightweight lamdba-based testing library for Ruby} - s.rubyforge_project = "testrocket" + s.rubyforge_project = 'testrocket' 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.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } + s.require_paths = ['lib'] end