Sha256: a834dd7ddf560f3b2554cc6fd117d0ead1303ebbe4297899a523e006fdcdf88d

Contents?: true

Size: 551 Bytes

Versions: 32

Compression:

Stored size: 551 Bytes

Contents

# encoding: UTF-8
require 'rubygems'
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'rake'
require 'rake/rdoctask'

require 'rspec/core'
require 'rspec/core/rake_task'

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

task :default => :spec

Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Whoops'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
whoops-0.5.4 Rakefile
whoops-0.5.3 Rakefile
whoops-0.5.2 Rakefile
whoops-0.5.1 Rakefile
whoops-0.5.0 Rakefile
whoops-0.4.0 Rakefile
whoops-0.3.5 Rakefile
whoops-0.3.4 Rakefile
whoops-0.3.3 Rakefile
whoops-0.3.2 Rakefile
whoops-0.3.1 Rakefile
whoops-0.3 Rakefile
whoops-0.2.4 Rakefile
whoops-0.2.3 Rakefile
whoops-0.2.2 Rakefile
whoops-0.2.1 Rakefile
whoops-0.2 Rakefile
whoops-0.1.10 Rakefile
whoops-0.1.9 Rakefile
whoops-0.1.8 Rakefile