Sha256: 3f557a097c94236ec2530a43a775f850bcca19b3b10267e9a8ba53381bf0a3ea

Contents?: true

Size: 803 Bytes

Versions: 9

Compression:

Stored size: 803 Bytes

Contents

#!/usr/bin/env rake
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Sketchily'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'



Bundler::GemHelper.install_tasks

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end


task :default => :test

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
sketchily-1.1.0 Rakefile
sketchily-1.0.3 Rakefile
sketchily-1.0.2 Rakefile
sketchily-1.0.1 Rakefile
sketchily-1.0.0 Rakefile
sketchily-0.3.0 Rakefile
sketchily-0.2.0 Rakefile
sketchily-0.1.0 Rakefile
sketchily-0.0.2 Rakefile