Sha256: c7d73f8e03ed16a75beb760a9bb1d94919ed4872828021e3e427aa001e9dc32b

Contents?: true

Size: 505 Bytes

Versions: 15

Compression:

Stored size: 505 Bytes

Contents

# encoding: utf-8
require 'rubygems'
require 'bundler'
Bundler.setup
Bundler::GemHelper.install_tasks
ENV['RUBYOPT'] = nil # Necessary to prevent Bundler from *&^%$#ing up rake-compiler.

require 'rake/clean'

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

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

15 entries across 15 versions & 1 rubygems

Version Path
gherkin-2.3.2 Rakefile
gherkin-2.3.2-x86-mswin32 Rakefile
gherkin-2.3.2-x86-mingw32 Rakefile
gherkin-2.3.2-universal-dotnet Rakefile
gherkin-2.3.2-java Rakefile
gherkin-2.3.1 Rakefile
gherkin-2.3.1-x86-mswin32 Rakefile
gherkin-2.3.1-x86-mingw32 Rakefile
gherkin-2.3.1-universal-dotnet Rakefile
gherkin-2.3.1-java Rakefile
gherkin-2.3.0 Rakefile
gherkin-2.3.0-x86-mswin32 Rakefile
gherkin-2.3.0-x86-mingw32 Rakefile
gherkin-2.3.0-universal-dotnet Rakefile
gherkin-2.3.0-java Rakefile