Sha256: 0856b37f74fb8e7a3d766277bc8696040fef0b86a89102ec24d11d5e947de8d6
Contents?: true
Size: 1.19 KB
Versions: 3
Compression:
Stored size: 1.19 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "minitest/should/version" Gem::Specification.new do |s| s.name = "minitest_should" s.version = MiniTest::Should::VERSION s.authors = ["Spencer Steffen"] s.email = ["spencer@citrusme.com"] s.homepage = "https://github.com/citrus/minitest_should" s.summary = %q{Shoulda style syntax for minitest test::unit. Contexts are not yet supported, but you can use `should "do something"` instead of those `pesky_underscored_test_names`.} s.description = %q{Shoulda style syntax for minitest test::unit. Contexts are not yet supported, but you can use `should "do something"` instead of those `pesky_underscored_test_names`. Please see documentation for more information.} s.rubyforge_project = "minitest_should" 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_development_dependency "rake", "> 0" s.add_development_dependency "bundler", "> 0" s.add_development_dependency "minitest", "> 2" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
minitest_should-0.3.1 | minitest_should.gemspec |
minitest_should-0.3.0 | minitest_should.gemspec |
minitest_should-0.2.0 | minitest_should.gemspec |