Sha256: 295db86a100c871575f95c09f3f4ca96d977ed2c5c9049d7b979ad4a424a8939

Contents?: true

Size: 989 Bytes

Versions: 2

Compression:

Stored size: 989 Bytes

Contents

#-*- mode: ruby -*-

require './lib/jars/version'

Gem::Specification.new do |s|
  s.name = 'jar-dependencies'
  s.version = Jars::VERSION
  s.author = 'christian meier'
  s.email = [ 'mkristian@web.de' ]
  s.summary = 'manage jar dependencies for gems'
  s.homepage = 'https://github.com/mkristian/jar-dependencies'

  s.license = 'MIT'

  s.files = Dir[ 'lib/**/*rb' ]
  s.files += Dir[ '*file' ]
  s.files += [ 'Readme.md', 'jar-dependencies.gemspec', 'MIT-LICENSE' ]

  s.description = 'manage jar dependencies for gems and keep track which jar was already loaded using maven artifact coordinates. it warns on version conflicts and loads only ONE jar assuming the first one is compatible to the second one otherwise your project needs to lock down the right version by providing a Jars.lock file.'

  s.add_development_dependency 'minitest', '~> 5.3'
  s.add_development_dependency 'rake', '~> 10.2'
  s.add_development_dependency "ruby-maven", "~> 3.1.1.0.11"
end

# vim: syntax=Ruby

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jar-dependencies-0.1.12 jar-dependencies.gemspec
jar-dependencies-0.1.11 jar-dependencies.gemspec