File: Rakefile

package info (click to toggle)
ruby-chunky-png 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,232 kB
  • sloc: ruby: 4,586; makefile: 4
file content (13 lines) | stat: -rw-r--r-- 280 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen-string-literal: true

require "bundler/gem_tasks"
require "rspec/core/rake_task"

Dir["tasks/*.rake"].each { |file| load(file) }

RSpec::Core::RakeTask.new(:spec) do |task|
  task.pattern = "./spec/**/*_spec.rb"
  task.rspec_opts = ["--color"]
end

task default: [:spec]