Sha256: d0ea33343ee88c3647a0e74fa3b6d8c323d917b16d46ff14bab3d74744dfd9f8

Contents?: true

Size: 495 Bytes

Versions: 26

Compression:

Stored size: 495 Bytes

Contents

# encoding: utf-8
require 'rubygems'
require 'bundler'
Bundler::GemHelper.install_tasks

$:.unshift File.expand_path("../lib", __FILE__)

require "rspec/core/rake_task"
RSpec::Core::RakeTask.new(:spec) do |t|
  t.ruby_opts  = %w[-r./spec/coverage -w]
  t.rspec_opts = %w[--color]
end

require_relative 'spec/capture_warnings'
include CaptureWarnings
namespace :spec do
  task :warnings do
    report_warnings do
      Rake::Task['spec'].invoke
    end
  end
end

task default: ['spec:warnings']

Version data entries

26 entries across 26 versions & 4 rubygems

Version Path
gherkin-5.0.0 Rakefile
gherkin-4.1.3 Rakefile
gherkin-4.1.2 Rakefile
gherkin-4.1.1 Rakefile
gherkin-4.1.0 Rakefile
gherkin-4.0.0 Rakefile
gherkin-3.2.0 Rakefile
gherkin3-3.1.2 Rakefile
cucumber-core-1.3.0 Rakefile
gherkin3-3.1.1 Rakefile
gherkin3-3.1.0 Rakefile
gherkin3-3.0.0 Rakefile
gherkin3-3.0.0.alpha.1 Rakefile
cucumber-core-1.2.0 Rakefile
gherkin3-pre-alpha-3.0.0.alpha.1 Rakefile
cucumber-core-1.1.3 Rakefile
cucumber-core-1.1.2 Rakefile
cucumber-core-1.1.1 Rakefile
cucumber-core-1.1.0 Rakefile
cucumber-core-1.0.0 Rakefile