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.1.34 Rakefile
recog-2.1.33 Rakefile
recog-2.1.32 Rakefile
recog-2.1.31 Rakefile
recog-2.1.30 Rakefile
recog-2.1.29 Rakefile
recog-2.1.28 Rakefile
recog-2.1.27 Rakefile
recog-2.1.26 Rakefile
recog-2.1.25 Rakefile
recog-2.1.24 Rakefile
recog-2.1.23 Rakefile
recog-2.1.22 Rakefile
recog-2.1.21 Rakefile
recog-2.1.20 Rakefile
recog-2.1.19 Rakefile
recog-2.1.18 Rakefile
recog-2.1.17 Rakefile
recog-2.1.16 Rakefile
recog-2.1.15 Rakefile