Sha256: 1ed10493997024e6054debc3ab53e5de261b0f22609d134bfe7eace632c4d3ce

Contents?: true

Size: 620 Bytes

Versions: 8

Compression:

Stored size: 620 Bytes

Contents

# encoding: utf-8
GHERKIN_VERSION = Gem::Specification.load(File.dirname(__FILE__) + '/gherkin.gemspec').version.version
require 'rubygems'
require 'bundler'
unless ENV['RUBY_CC_VERSION']
  Bundler.setup
  Bundler::GemHelper.install_tasks
end
ENV['RUBYOPT'] = nil # Necessary to prevent Bundler from *&^%$#ing up rake-compiler.

require 'rake/clean'

$:.unshift(File.dirname(__FILE__) + '/lib')

Dir['tasks/**/*.rake'].each { |rake| load File.expand_path(rake) }

task :default  => [:spec, :cucumber]
task :spec     => defined?(JRUBY_VERSION) ? :jar : :compile
task :cucumber => defined?(JRUBY_VERSION) ? :jar : :compile

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
gherkin-2.3.9-x86-mswin32 Rakefile
gherkin-2.3.9-x86-mingw32 Rakefile
gherkin-2.3.9-universal-dotnet Rakefile
gherkin-2.3.9-java Rakefile
gherkin-2.3.8-x86-mswin32 Rakefile
gherkin-2.3.8-x86-mingw32 Rakefile
gherkin-2.3.8-universal-dotnet Rakefile
gherkin-2.3.8-java Rakefile