You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/vendor/bundle/ruby/4.0.0/gems/chunky_png-1.4.0/Rakefile

14 lines
280 B

# 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]