-
Notifications
You must be signed in to change notification settings - Fork 2
/
build_log_parser.gemspec
27 lines (22 loc) · 1.05 KB
/
build_log_parser.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 "build_log_parser/version"
Gem::Specification.new do |spec|
spec.name = "build_log_parser"
spec.version = BuildLogParser::VERSION
spec.summary = "Parse build metrics from logs"
spec.description = "Parses various build metrics from builds logs (Rspec, Test::Unit, etc)"
spec.homepage = "https://github.com/magnumci/build_log_parser"
spec.authors = ["Dan Sosedoff"]
spec.email = ["[email protected]"]
spec.license = "MIT"
spec.add_development_dependency "rake", "~> 10"
spec.add_development_dependency "rspec", "~> 2.13"
spec.add_development_dependency "simplecov", "~> 0.8"
spec.add_dependency "chronic_duration", "~> 0.10"
spec.files = `git ls-files`.split("\n")
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
spec.require_paths = ["lib"]
end