Sha256: 9248aa2586e35f92fbfe51b687ef21befa0eec1398a88eea45c411cf43fae8cb
Contents?: true
Size: 975 Bytes
Versions: 1
Compression:
Stored size: 975 Bytes
Contents
require_relative "lib/covered/version" Gem::Specification.new do |spec| spec.name = "covered" spec.version = Covered::VERSION spec.authors = ["Samuel Williams"] spec.email = ["samuel.williams@oriontransfer.co.nz"] spec.summary = "A modern approach to code coverage." spec.homepage = "https://github.com/ioquatix/covered" # Specify which files should be added to the gem when it is released. spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "rainbow" spec.add_dependency "parser" spec.add_development_dependency "trenni", "~> 3.6" spec.add_development_dependency "bundler" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.6" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
covered-0.8.0 | covered.gemspec |