lock_jar.gemspec in lock_jar-0.13.0 vs lock_jar.gemspec in lock_jar-0.14.0

- old
+ new

@@ -7,21 +7,24 @@ Gem::Specification.new do |s| s.name = 'lock_jar' s.version = LockJar::VERSION s.authors = ['Michael Guymon'] s.date = '2014-03-06' - s.description = 'Manage Jar files for Ruby. In the spirit of Bundler, a Jarfile is used to generate a Jarfile.lock that contains all the resolved jar dependencies for scopes runtime, compile, and test. The Jarfile.lock can be used to populate the classpath' + s.description = 'Manage Jar files for Ruby. In the spirit of Bundler, a Jarfile +is used to generate a Jarfile.lock that contains all the resolved jar dependencies +for scopes runtime, compile, and test. The Jarfile.lock can be used to populate the +classpath' s.email = 'michael@tobedevoured.com' s.files = `git ls-files -z`.split("\x0") s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) } s.test_files = s.files.grep(%r{^(test|spec|features)/}) s.extra_rdoc_files = %w(LICENSE README.md) s.homepage = 'http://github.com/mguymon/lock_jar' s.licenses = %w(Apache) s.require_paths = %w(lib) s.summary = 'Manage Jar files for Ruby' - s.add_dependency(%q<naether>, ['~> 0.15.0']) - s.add_dependency(%q<thor>, ['>= 0.18.1']) - + s.add_dependency('naether', ['~> 0.15.0']) + s.add_dependency('thor', ['>= 0.18.1']) + s.add_development_dependency('rspec', '~> 2.14.1') s.add_development_dependency('rake') end