File: Rakefile

package info (click to toggle)
ruby-forwardable-extended 2.6.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 76 kB
  • sloc: ruby: 132; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 458 bytes parent folder | download | duplicates (3)
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