forked from aespinosa/minitest-junit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
minitest-junit.gemspec
27 lines (23 loc) · 1.02 KB
/
minitest-junit.gemspec
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
27
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'minitest/junit/version'
Gem::Specification.new do |spec|
spec.name = 'minitest-junit'
spec.version = Minitest::Junit::VERSION
spec.authors = ['Allan Espinosa']
spec.email = ['[email protected]']
spec.summary = 'Junit reporter for Minitest ~> 5.0'
spec.description = 'Junit reporter for Minitest ~> 5.0'
spec.homepage = 'http://github.com/aespinosa/minitest-junit'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(/^bin\//) { |f| File.basename(f) }
spec.test_files = spec.files.grep(/^(test)\//)
spec.require_paths = ['lib']
spec.add_dependency 'minitest', '~> 5.0'
spec.add_dependency 'builder', '~> 3.2'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake', '~> 10.3.2'
spec.add_development_dependency 'rubocop', '~> 0.24.1'
end