Sha256: b6b4bf9317a46b1c5b16a447827beb2df300a803d169b41da7fcb431b88136e3
Contents?: true
Size: 855 Bytes
Versions: 3
Compression:
Stored size: 855 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "assert/version" Gem::Specification.new do |s| s.name = "assert" s.version = Assert::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Kelly Redding", "Collin Redding"] s.email = ["kelly@kellyredding.com", "collin.redding@me.com"] s.homepage = "http://github.com/redding/assert" s.summary = %q{Test::Unit style testing framework, just better than Test::Unit.} s.description = %q{Test::Unit style testing framework, just better than Test::Unit.} s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_dependency("ansi", ["~> 1.3"]) end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
assert-2.0.0.rc.1 | assert.gemspec |
assert-1.1.0 | assert.gemspec |
assert-1.0.0 | assert.gemspec |