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