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-1.2.6 Rakefile
polyblock-1.2.5 Rakefile
polyblock-1.2.4 Rakefile
polyblock-1.2.3 Rakefile
polyblock-1.2.2 Rakefile
polyblock-1.2.1 Rakefile
polyblock-1.2.0 Rakefile
polyblock-1.1.1 Rakefile
polyblock-1.1.0 Rakefile
polyblock-1.0.8 Rakefile
polyblock-1.0.7 Rakefile
polyblock-1.0.6 Rakefile
polyblock-1.0.5 Rakefile
polyblock-1.0.4 Rakefile
polyblock-1.0.3 Rakefile
polyblock-1.0.2 Rakefile
polyblock-1.0.1 Rakefile
polyblock-1.0.0 Rakefile
polyblock-0.9.9 Rakefile
polyblock-0.9.8 Rakefile