forked from mguymon/lock_jar
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlock_jar.gemspec
27 lines (22 loc) · 1.03 KB
/
lock_jar.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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 = '[email protected]'
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.13.1'])
s.add_dependency(%q<thor>, ['>= 0.18.1'])
end