# 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', __dir__)

require 'rake'
# require 'rake/testtask'
# require 'rake/rdoctask'

# TODO: this should be removed after Rails updating to version > 3.0.7
# =====================================================================
module ::OnApp
  class Application
    include Rake::DSL
  end
end

module ::RakeFileUtils
  extend Rake::FileUtilsExt
end
# =====================================================================

require 'on_app/version'
OnApp::Application.load_tasks
