forked from cucumber-attic/gherkin2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gherkin.gemspec
79 lines (71 loc) · 2.96 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require 'gherkin/platform'
Gem::Specification.new do |s|
s.name = "gherkin"
# If the MINOR version is bumped (MAJOR.MINOR.PATCH), verify that the change is ok:
#
# * Comment out the cucumber dependency below
# * Uncomment the cucumber location in Gemfile
# * Bump cucumber's gherkin dependency to the new version
# * bundle update
# * bundle exec rake
#
# Repeat these step for cucumber (swap `cucumber` with `gherkin`).
#
# When both are building OK, do a `bundle exec rake install` in both cucumber and gherkin projects, revert the changes in the first 2 steps
# and release both projects. Do this for both ruby 1.8.7, ruby 1.9.3 and jruby.
#
s.version = Gherkin::VERSION
s.authors = ["Mike Sassak", "Gregory Hnatiuk", "Aslak Hellesøy"]
s.description = "A fast Gherkin lexer/parser based on the Ragel State Machine Compiler."
s.summary = "#{s.name}-#{s.version}"
s.email = "cukes@googlegroups.com"
s.homepage = "http://github.com/cucumber/gherkin"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.rdoc_options = ["--charset=UTF-8"]
s.require_path = "lib"
s.files -= Dir['ikvm/**/*']
s.files -= Dir['java/**/*']
s.files -= Dir['js/**/*']
s.files -= Dir['ext/**/*']
s.files -= Dir['lib/gherkin.jar']
s.files -= Dir['lib/**/*.dll']
s.files -= Dir['lib/**/*.bundle']
s.files -= Dir['lib/**/*.so']
if ENV['GEM_PLATFORM']
puts "GEM_PLATFORM:#{ENV['GEM_PLATFORM']}"
end
s.platform = ENV['GEM_PLATFORM'] if ENV['GEM_PLATFORM']
case s.platform.to_s
when /java/
s.files += Dir['lib/*.jar']
when /mswin|mingw32/
s.files += Dir['lib/*/*.so']
when /dotnet/
s.files += Dir['lib/*.dll']
else # MRI or Rubinius
s.files += Dir['lib/gherkin/rb_lexer/*.rb']
s.files += Dir['ext/**/*.c']
s.extensions = Dir['ext/**/extconf.rb']
s.add_development_dependency('rake-compiler', '>= 0.8.2')
end
s.files -= Dir['**/.gitignore']
s.add_runtime_dependency('multi_json', '~> 1.3')
s.add_development_dependency('cucumber', '>= 1.3.1')
s.add_development_dependency('rake', '>= 10.0.3')
s.add_development_dependency('bundler', '>= 1.2.3') # Make sure it's in sync with /.travis.yml
s.add_development_dependency('rspec', '~> 2.13.0')
s.add_development_dependency('rubyzip', '>= 0.9.9')
unless ENV['RUBY_CC_VERSION'] || Gherkin::JRUBY
s.add_development_dependency('therubyracer', '>= 0.11.4') if ENV['GHERKIN_JS']
# For Documentation:
s.add_development_dependency('yard', '>= 0.8.3')
s.add_development_dependency('rdiscount', '>= 1.6.8')
end
# Only needed by Cucumber. Remove when Cucumber no longer needs those.
s.add_development_dependency('term-ansicolor', '>= 1.0.7')
s.add_development_dependency('builder', '>= 3.1.4')
end