File: test-unit-context.gemspec

package info (click to toggle)
ruby-test-unit-context 0.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 184 kB
  • ctags: 105
  • sloc: ruby: 810; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 1,038 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'test/unit/context/version'

Gem::Specification.new do |gem|
  gem.name          = "test-unit-context"
  gem.version       = Test::Unit::Context::VERSION
  gem.authors       = ["kares"]
  gem.email         = ["self@kares.org"]
  
  gem.summary       = %q{Context for Test::Unit (2.x)}
  gem.description   = %q{Makes Test::Unit::TestCases 'contextable' and thus much
easier to read and write. If you've seen RSpec than it's the very same 'context 
do ... end' re-invendet for Test::Unit. Inspired by gem 'context' that does the
same for the 'old' Test::Unit 1.2.3 bundled with Ruby 1.8.x standard libraries.}
  gem.homepage      = "http://github.com/kares/test-unit-context"

  gem.require_paths = ["lib"]
  gem.files         = `git ls-files`.split("\n")
  gem.test_files    = `git ls-files -- {test}/*`.split("\n")
  
  gem.extra_rdoc_files = %w[ README.md LICENSE ]
  
  gem.add_dependency 'test-unit', '>= 2.4.0'
  gem.add_development_dependency 'rake'
end