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.5 Rakefile
recog-2.3.4 Rakefile
recog-2.3.3 Rakefile
recog-2.3.2 Rakefile
recog-2.3.1 Rakefile
recog-2.3.0 Rakefile
recog-2.2.1 Rakefile
recog-2.2.0 Rakefile
recog-2.1.46 Rakefile
recog-2.1.45 Rakefile
recog-2.1.44 Rakefile
recog-2.1.43 Rakefile
recog-2.1.42 Rakefile
recog-2.1.41 Rakefile
recog-2.1.40 Rakefile
recog-2.1.39 Rakefile
recog-2.1.38 Rakefile
recog-2.1.37 Rakefile
recog-2.1.36 Rakefile
recog-2.1.35 Rakefile