File: minitest-around.gemspec

package info (click to toggle)
ruby-minitest-around 0.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 172 kB
  • sloc: ruby: 282; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 621 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require './lib/minitest/around/version'

Gem::Specification.new "minitest-around", MinitestAround::VERSION do |s|
  s.authors     = ["Peter Leitzen"]
  s.email       = ["peter-minitest-around@suschlik.de"]
  s.homepage    = "https://github.com/splattael/minitest-around"
  s.summary     = "Around block for minitest."
  s.description = "Alternative for setup/teardown dance."
  s.license     = 'MIT'
  s.files       = `git ls-files`.split("\n")

  s.add_dependency 'minitest', '~> 5.0'

  s.add_development_dependency 'rdoc'
  s.add_development_dependency 'rake'
  s.add_development_dependency 'cucumber', '~> 2.4.0'
end