mirror of
https://github.com/kbparagua/paloma
synced 2023-03-27 23:21:17 -04:00
11 lines
357 B
Ruby
11 lines
357 B
Ruby
#!/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__)
|
|
|
|
if ['development', 'test'].include?(Rails.env)
|
|
require 'rspec/core/rake_task'
|
|
end
|
|
|
|
TestApp::Application.load_tasks
|