-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gemspec
22 lines (19 loc) · 917 Bytes
/
.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require File.expand_path("../lib/test/unit/runner/html-version", __FILE__)
Gem::Specification.new do |s|
s.name = "test-unit-runner-html"
s.version = Test::Unit::Runner::Html::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Azhagu Selvan SP']
s.email = ['[email protected]']
s.homepage = "http://github.com/tamizhgeek/test-unit-runner-html"
s.summary = "Test::Unit runner which can emit customizable html reports"
s.description = "Test::Unit runner which can emit customizable html reports"
s.required_rubygems_version = ">= 1.3.6"
# s.rubyforge_project = "foodie"
s.add_dependency "test-unit"
s.add_dependency "mustache"
s.add_development_dependency "bundler", ">= 1.0.0"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
end