# 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. begin require 'bundler/setup' rescue LoadError => e abort e.message end require 'rake' require 'rubygems/tasks' Gem::Tasks.new require 'cucumber/rake/task' Cucumber::Rake::Task.new do |t| t.cucumber_opts = %w[--format pretty] end require File.expand_path('../config/application', __FILE__) Rails.application.load_tasks