notebook/Rakefile
2015-04-19 13:43:30 -05:00

12 lines
326 B
Ruby

# 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 'rubocop/rake_task'
RuboCop::RakeTask.new
task default: 'rubocop'
Rails.application.load_tasks