2019-07-30 23:29:24 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-02-01 13:15:35 -06:00
|
|
|
# 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.
|
|
|
|
|
2019-07-30 23:29:24 +02:00
|
|
|
require File.expand_path('config/application', __dir__)
|
2019-02-01 13:15:35 -06:00
|
|
|
|
|
|
|
require 'rspec/core/rake_task'
|
|
|
|
RSpec::Core::RakeTask.new(:spec)
|
|
|
|
|
|
|
|
Dummy::Application.load_tasks
|