File: Rakefile

package info (click to toggle)
ruby-pathutil 0.16.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 136 kB
  • sloc: ruby: 614; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 311 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
# Frozen-string-literal: true
# Copyright: 2017 - 2018 - MIT License
# Source: https://github.com/envygeeks/devfiles
# Author: Jordon Bedwell
# Encoding: utf-8

task default: [:spec]
task(:spec) { exec "script/test" }
task(:test) { exec "script/test" }
Dir.glob("script/rake.d/*.rake").each do |v|
  load v
end