forked from cucumber/gherkin-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gherkin.gemspec
27 lines (24 loc) · 972 Bytes
/
gherkin.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
26
27
# encoding: utf-8
Gem::Specification.new do |s|
s.name = 'gherkin'
s.version = '4.1.1'
s.authors = ["Gáspár Nagy", "Aslak Hellesøy", "Steve Tooke"]
s.description = 'Gherkin parser'
s.summary = "gherkin-#{s.version}"
s.email = '[email protected]'
s.homepage = "https://github.com/cucumber/gherkin-ruby"
s.platform = Gem::Platform::RUBY
s.license = "MIT"
s.required_ruby_version = ">= 1.9.3"
s.add_development_dependency 'bundler'
s.add_development_dependency 'rake', '~> 10.5'
s.add_development_dependency 'rspec', '~> 3.5'
# For coverage reports
s.add_development_dependency 'coveralls'
s.executables = ["gherkin-ruby"]
s.rubygems_version = ">= 1.6.1"
s.files = `git ls-files`.split("\n").reject {|path| path =~ /\.gitignore$/ }
s.test_files = `git ls-files -- spec/*`.split("\n")
s.rdoc_options = ["--charset=UTF-8"]
s.require_path = "lib"
end