Sha256: ab1af1eaf94793e792ebc82da19d021889f7ed690e4111ccc9ef935576688331

Contents?: true

Size: 485 Bytes

Versions: 111

Compression:

Stored size: 485 Bytes

Contents

require "bundler/gem_tasks"

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new do |t|
    t.pattern = "spec/**/*_spec.rb"
end

require 'yard'
require 'yard/rake/yardoc_task'
YARD::Rake::YardocTask.new do |t|
    t.files = ['lib/**/*.rb', '-', 'README.md']
end

require 'cucumber'
require 'cucumber/rake/task'

Cucumber::Rake::Task.new(:features) do |t|
    t.cucumber_opts = "features --format pretty"
end

task :default => [ :tests, :yard ]
task :tests => [ :spec, :features ]

Version data entries

111 entries across 111 versions & 2 rubygems

Version Path
recog-2.3.23 Rakefile
recog-2.3.22 Rakefile
recog-2.3.21 Rakefile
recog-2.3.20 Rakefile
recog-2.3.19 Rakefile
recog-2.3.18 Rakefile
recog-2.3.17 Rakefile
recog-2.3.16 Rakefile
recog-2.3.15 Rakefile
recog-intrigue-2.3.14 Rakefile
recog-2.3.14 Rakefile
recog-2.3.13 Rakefile
recog-2.3.12 Rakefile
recog-2.3.11 Rakefile
recog-2.3.10 Rakefile
recog-2.3.9 Rakefile
recog-intrigue-2.3.7 Rakefile
recog-2.3.8 Rakefile
recog-2.3.7 Rakefile
recog-2.3.6 Rakefile