-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_parser.gemspec
More file actions
27 lines (22 loc) · 938 Bytes
/
test_parser.gemspec
File metadata and controls
27 lines (22 loc) · 938 Bytes
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "test_parser/version"
Gem::Specification.new do |s|
s.name = "test_parser"
s.version = TestParser::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Juan Manuel Barreneche"]
s.email = ["juanmanuel.barreneche@gmail.com"]
s.homepage = ""
s.summary = %q{Retrieves information of your test suite}
s.description = %q{Retrieves information of your test suite}
s.rubyforge_project = "test_parser"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency 'ruby_parser', '~> 2.0.5'
s.add_dependency 'ruby2ruby', '~> 1.2.5'
s.add_dependency 'rspec-core', '~> 2.5.0'
s.add_dependency 'minitest', '~> 2.0.2'
end