mirror of
https://github.com/ditkrg/simplecov-json.git
synced 2026-01-22 22:06:46 +00:00
22 lines
786 B
Ruby
22 lines
786 B
Ruby
# -*- encoding: utf-8 -*-
|
|
$:.push File.expand_path("../lib", __FILE__)
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = "simplecov-json"
|
|
s.version = '0.1.1'
|
|
s.platform = Gem::Platform::RUBY
|
|
s.authors = ["Vicent Llongo"]
|
|
s.email = ["villosil@gmail.com"]
|
|
s.homepage = "https://github.com/vicentllongo/simplecov-json"
|
|
s.summary = %Q{JSON formatter for SimpleCov code coverage tool for ruby 1.9+}
|
|
s.description = %Q{JSON formatter for SimpleCov code coverage tool for ruby 1.9+}
|
|
|
|
s.rubyforge_project = "simplecov-json"
|
|
s.files = ['lib/simplecov-json.rb']
|
|
s.test_files = ['test/helper', 'test/test_simplecov_json.rb']
|
|
s.require_paths = ["lib"]
|
|
|
|
s.add_dependency(%q<simplecov>, [">= 0"])
|
|
s.add_dependency(%q<json>, [">= 0"])
|
|
end
|