Sha256: c371c064fbcf7d84e7069deb195468f3853a71499fe4f3fb00d20bbf27e8a232
Contents?: true
Size: 431 Bytes
Versions: 7
Compression:
Stored size: 431 Bytes
Contents
#!/usr/bin/env rake # Add your own tasks in files placed in lib/tasks ending in .rake, # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. require File.expand_path('../config/application', __FILE__) require 'cucumber/rake/task' BookStore::Application.load_tasks Cucumber::Rake::Task.new(:cucumber) do |test| ENV['APP_ENV'] = "test" if ENV['APP_ENV'].nil? end task :default => :cucumber
Version data entries
7 entries across 7 versions & 1 rubygems