Sha256: 0695b2daf78d5923fc6f8a2d6cc8df6935ccee6ccb2b1c8b91058403f647b0d6

Contents?: true

Size: 674 Bytes

Versions: 87

Compression:

Stored size: 674 Bytes

Contents

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

require 'rdoc/task'

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Polyblock'
  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

87 entries across 87 versions & 1 rubygems

Version Path
polyblock-0.4.5 Rakefile
polyblock-0.4.2 Rakefile
polyblock-0.4.1 Rakefile
polyblock-0.4.0 Rakefile
polyblock-0.3.9 Rakefile
polyblock-0.3.7 Rakefile
polyblock-0.3.6 Rakefile
polyblock-0.3.5 Rakefile
polyblock-0.3.4 Rakefile
polyblock-0.3.3 Rakefile
polyblock-0.3.2 Rakefile
polyblock-0.3.1 Rakefile
polyblock-0.3.0 Rakefile
polyblock-0.2.9 Rakefile
polyblock-0.2.8 Rakefile
polyblock-0.2.7 Rakefile
polyblock-0.2.5 Rakefile
polyblock-0.2.4 Rakefile
polyblock-0.2.3 Rakefile
polyblock-0.2.2 Rakefile