File: Rakefile

package info (click to toggle)
ruby-truncato 0.7.13-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 92 kB
  • sloc: ruby: 203; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 234 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

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

RSpec::Core::RakeTask.new(:spec)

task default: :spec