File: Rakefile

package info (click to toggle)
ruby-dry-logic 1.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 728 kB
  • sloc: ruby: 4,929; makefile: 6
file content (14 lines) | stat: -rw-r--r-- 288 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env rake
# frozen_string_literal: true

require "bundler/gem_tasks"

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "lib"))

require "rspec/core"
require "rspec/core/rake_task"

task default: :spec

desc "Run all specs in spec directory"
RSpec::Core::RakeTask.new(:spec)