Sha256: b281da0eb869e1e58ee3a2752ddfa9bed5fb32b6bf7b44ecc0430739d914a00c
Contents?: true
Size: 1.11 KB
Versions: 12
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_bundler/version' Gem::Specification.new do |spec| spec.name = 'lock_jar_bundler' spec.version = LockJar::Bundler::VERSION spec.authors = ['Michael Guymon'] spec.email = %w(michael@tobedevoured) spec.summary = 'Manage Jar files for Ruby' spec.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' spec.homepage = 'http://github.com/mguymon/lock_jar' spec.license = 'Apache' spec.files = `git ls-files -z`.split("\x0") 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_dependency 'lock_jar', '>= 0.8.0' spec.add_dependency 'bundler', '~> 1.6' spec.add_development_dependency 'rake' end
Version data entries
12 entries across 12 versions & 1 rubygems