blob: 1c929e5c6aff57d2b46fc4699fedcc57c6d79b16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# ----------------------------------------------------------------------------
# Frozen-string-literal: true
# Copyright: 2015-2016 Jordon Bedwell - MIT License
# Encoding: utf-8
# ----------------------------------------------------------------------------
$LOAD_PATH.unshift(File.expand_path("../lib", __FILE__))
require "luna/rubocop/rake/task"
require "rspec/core/rake_task"
task :default => [:spec]
RSpec::Core::RakeTask.new :spec
task :test => :spec
|