forked from github/scientist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scientist.gemspec
20 lines (17 loc) · 925 Bytes
/
scientist.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$: << "lib" and require "scientist/version"
Gem::Specification.new do |gem|
gem.name = "scientist"
gem.description = "A Ruby library for carefully refactoring critical paths"
gem.version = Scientist::VERSION
gem.authors = ["GitHub Open Source", "John Barnette", "Rick Bradley", "Jesse Toth", "Nathan Witmer"]
gem.email = ["[email protected]", "[email protected]", "[email protected]", "[email protected]","[email protected]"]
gem.summary = "Carefully test, measure, and track refactored code."
gem.homepage = "https://github.com/github/scientist"
gem.license = "MIT"
gem.files = `git ls-files`.split($/)
gem.executables = []
gem.test_files = gem.files.grep(/^test/)
gem.require_paths = ["lib"]
gem.add_development_dependency "minitest", "~> 5.8"
gem.add_development_dependency "coveralls", "~> 0.8"
end