Sha256: 938a93e0d7668bfc94ed37868ede2fe13e6874ecdb7f63d9834993f1137e26ed

Contents?: true

Size: 473 Bytes

Versions: 10

Compression:

Stored size: 473 Bytes

Contents

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

Bundler::GemHelper.install_tasks

task(:default).clear
if ENV['APPRAISAL_INITIALIZED'] || ENV['TRAVIS']
  require 'rspec/core'
  require 'rspec/core/rake_task'
  RSpec::Core::RakeTask.new(:spec)
  task default: :spec
else
  require 'appraisal'
  Appraisal::Task.new
  task default: :appraisal
end

require 'yard'
YARD::Rake::YardocTask.new

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
webvalve-0.12.0 Rakefile
webvalve-0.11.0 Rakefile
webvalve-0.10.0 Rakefile
webvalve-0.9.10 Rakefile
webvalve-0.9.9 Rakefile
webvalve-0.9.8 Rakefile
webvalve-0.9.7 Rakefile
webvalve-0.9.6 Rakefile
webvalve-0.9.5 Rakefile
webvalve-0.9.4 Rakefile