mercenary.gemspec in mercenary-0.0.1 vs mercenary.gemspec in mercenary-0.1.0
- old
+ new
@@ -4,20 +4,21 @@
require 'mercenary/version'
Gem::Specification.new do |spec|
spec.name = "mercenary"
spec.version = Mercenary::VERSION
- spec.authors = ["Parker Moore", "Tom Preston-Werner"]
- spec.email = ["parkrmoore@gmail.com", "tom@mojombo.com"]
- spec.description = %q{Write better command-line apps.}
- spec.summary = %q{Write better command-line apps.}
- spec.homepage = "http://github.com/jekyll/mercenary"
+ spec.authors = ["Tom Preston-Werner", "Parker Moore"]
+ spec.email = ["tom@mojombo.com", "parkrmoore@gmail.com"]
+ spec.description = %q{Lightweight and flexible library for writing command-line apps in Ruby.}
+ spec.summary = %q{Lightweight and flexible library for writing command-line apps in Ruby.}
+ spec.homepage = "https://github.com/jekyll/mercenary"
spec.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"]
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
+ spec.add_development_dependency "rspec", "~> 2.14"
end