Sha256: 7e39b97039cf479536df504c891100b9bd65a16d5798955d8acb0295f0268864

Contents?: true

Size: 654 Bytes

Versions: 8

Compression:

Stored size: 654 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    = 'WhurlEngine'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

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


Bundler::GemHelper.install_tasks

task :default => 'app:spec'

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
whurl_engine-2.2.0 Rakefile
whurl_engine-2.1.4 Rakefile
whurl_engine-2.1.3 Rakefile
whurl_engine-2.1.2 Rakefile
whurl_engine-2.1.0 Rakefile
whurl_engine-2.0.1 Rakefile
whurl_engine-2.0.0 Rakefile
whurl_engine-2.0.0.rc1 Rakefile