File: Rakefile

package info (click to toggle)
ruby-dry-inflector 0.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 356 kB
  • sloc: ruby: 1,498; makefile: 6; sh: 4
file content (11 lines) | stat: -rw-r--r-- 200 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require "rake"
require "bundler/gem_tasks"

require "rspec/core/rake_task"

task default: :spec

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