Sha256: b986fda9cdfec7c369cc4c3e21933f315df0d6d41cd005a1e3c3991c8592a2ba

Contents?: true

Size: 469 Bytes

Versions: 10

Compression:

Stored size: 469 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['CI']
  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-2.0.3 Rakefile
webvalve-2.0.2 Rakefile
webvalve-2.0.0 Rakefile
webvalve-1.3.1 Rakefile
webvalve-1.3.0 Rakefile
webvalve-1.2.0 Rakefile
webvalve-1.1.0 Rakefile
webvalve-1.0.2 Rakefile
webvalve-1.0.1 Rakefile
webvalve-1.0.0 Rakefile