File: Rakefile

package info (click to toggle)
ruby-shellany 0.0.1-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 152 kB
  • sloc: ruby: 218; sh: 4; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 223 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
require "bundler/gem_tasks"

require 'nenv'

default_tasks = []

require 'rspec/core/rake_task'
default_tasks  << RSpec::Core::RakeTask.new(:spec) do |t|
  t.verbose = Nenv.ci?
end

task default: default_tasks.map(&:name)