Sha256: 7d69815d161bf9b48e343a9dc29b9962545f526c3910effcda675f5bd234905c
Contents?: true
Size: 1.11 KB
Versions: 10
Compression:
Stored size: 1.11 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'lock_jar/version' 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.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('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
Version data entries
10 entries across 10 versions & 1 rubygems