forked from simplecov-ruby/simplecov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simplecov.gemspec
25 lines (22 loc) · 1015 Bytes
/
simplecov.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
# encoding: utf-8
$:.push File.expand_path('../lib', __FILE__)
require 'simplecov/version'
Gem::Specification.new do |gem|
gem.name = 'simplecov'
gem.version = SimpleCov::VERSION
gem.platform = Gem::Platform::RUBY
gem.authors = ["Christoph Olszowka"]
gem.email = ['christoph at olszowka de']
gem.homepage = 'http://github.com/colszowka/simplecov'
gem.description = %Q{Code coverage for Ruby 1.9+ with a powerful configuration library and automatic merging of coverage across test suites}
gem.summary = gem.description
gem.license = "MIT"
gem.required_ruby_version = ">= 1.8.7"
gem.add_dependency 'multi_json', '~> 1.0'
gem.add_dependency 'simplecov-html', '~> 0.8.0'
gem.add_dependency 'docile', '~> 1.1.0'
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.require_paths = ['lib']
end