Sha256: a507657a42805c9333859202f9fd252477b72c5e84f9cabd5bb8847999cf6cc0
Contents?: true
Size: 1017 Bytes
Versions: 1
Compression:
Stored size: 1017 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "test/unit/given/version" Gem::Specification.new do |s| s.name = "test_unit-given" s.version = Test::Unit::Given::VERSION s.platform = Gem::Platform::RUBY s.authors = ["David Copeland"] s.email = ["davetron5000@gmail.com"] s.homepage = "" s.summary = %q{Use Given/When/Then in your Test::Unit tests} s.description = %q{We don't need no stinkin' RSpec! Get all the fluency you want in your Test::Unit tests, with no magic required, using straight Ruby syntax} s.rubyforge_project = "test_unit-given" 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("faker") s.add_development_dependency("rdoc") s.add_development_dependency("rake") s.add_development_dependency("simplecov") end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
test_unit-given-0.9.4 | test_unit-given.gemspec |