public
Fork of aslakhellesoy/cucumber
Description: An experimental reimplementation of RSpec's story framework, based on Treetop
Homepage: http://rspec.info
Clone URL: git://github.com/dchelimsky/cucumber.git
cucumber / Rakefile
100644 10 lines (7 sloc) 0.35 kb
1
2
3
4
5
6
7
8
9
10
ENV['NODOT'] = 'true' # We don't want class diagrams in RDoc
require 'config/requirements'
require 'config/hoe' # setup Hoe + all gem configuration
 
Dir['gem_tasks/**/*.rake'].each { |rake| load rake }
 
# Hoe gives us :default => :test, but we don't have Test::Unit tests.
Rake::Task[:default].clear_prerequisites
task :default => [:spec, :features]