File: Rakefile

package info (click to toggle)
ruby-contracts 0.17-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 624 kB
  • sloc: ruby: 3,805; makefile: 4; sh: 2
file content (10 lines) | stat: -rw-r--r-- 209 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

task :default => [:spec]

task :add_tag do
  `git tag -a v#{Contracts::VERSION} -m 'v#{Contracts::VERSION}'`
end

require "rspec/core/rake_task"
RSpec::Core::RakeTask.new(:spec)