Sha256: 9b1f8950ccda22b6d1f9d46be4bee75681a40c047a138ebc7dfa4e8990adee45

Contents?: true

Size: 669 Bytes

Versions: 17

Compression:

Stored size: 669 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    = 'Fuel'
  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

require 'rake/testtask'

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


task default: :test

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
fuel-0.4.10 Rakefile
fuel-0.4.9 Rakefile
fuel-0.4.8 Rakefile
fuel-0.4.7 Rakefile
fuel-0.4.6 Rakefile
fuel-0.4.5 Rakefile
fuel-0.4.4 Rakefile
fuel-0.4.3 Rakefile
fuel-0.4.2 Rakefile
fuel-0.4.1 Rakefile
fuel-0.3.34 Rakefile
fuel-0.3.33 Rakefile
fuel-0.3.32 Rakefile
fuel-0.3.31 Rakefile
fuel-0.3.30 Rakefile
fuel-0.3.29 Rakefile
fuel-0.3.28 Rakefile