File: Rakefile

package info (click to toggle)
ruby-test-after-commit 0.2.3%2Bgh-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 120 kB
  • ctags: 30
  • sloc: ruby: 333; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 290 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'bundler/setup'
require 'bundler/gem_tasks'
require 'appraisal'
require 'bump/tasks'
require 'wwtd/tasks'

task :spec do
  sh "rspec spec/"
end

task :default => "appraisal:install" do
  Rake::Task[:wwtd].execute

  puts "REAL=1"
  ENV["REAL"] = "1"
  Rake::Task[:wwtd].execute
end