Skip to content

Instantly share code, notes, and snippets.

@headius
Created January 12, 2012 18:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save headius/1602109 to your computer and use it in GitHub Desktop.
Save headius/1602109 to your computer and use it in GitHub Desktop.
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "mvn:junit:junit"
s.version = "4.10.0"
s.platform = "java"
s.required_rubygems_version = nil if s.respond_to? :required_rubygems_version=
s.authors = ["David Saff (david@saff.net)"]
s.bindir = nil
s.date = "2012-01-12"
s.description = "JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java."
s.homepage = "http://junit.org"
s.licenses = ["Common Public License Version 1.0 (http://www.opensource.org/licenses/cpl1.0.txt)"]
s.require_paths = ["lib"]
s.required_ruby_version = nil
s.rubygems_version = "1.8.13"
s.summary = "JUnit"
if s.respond_to? :specification_version then
s.specification_version = -1
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<mvn:org.hamcrest:hamcrest-core>, ["~> 1.0.a"])
else
s.add_dependency(%q<mvn:org.hamcrest:hamcrest-core>, ["~> 1.0.a"])
end
else
s.add_dependency(%q<mvn:org.hamcrest:hamcrest-core>, ["~> 1.0.a"])
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment