Sha256: 4199a91d2ee59bbc9ce54f890618643dda26507fdaacca3ae486ee294423d64e

Contents?: true

Size: 806 Bytes

Versions: 14

Compression:

Stored size: 806 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    = 'EngineProject'
  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

14 entries across 14 versions & 2 rubygems

Version Path
sass-rails-3.1.7 test/fixtures/engine_project/Rakefile
sass-rails-3.1.6 test/fixtures/engine_project/Rakefile
sass-rails-3.2.1 test/fixtures/engine_project/Rakefile
sass-rails-3.2.0 test/fixtures/engine_project/Rakefile
sass-rails-3.1.5 test/fixtures/engine_project/Rakefile
sass-rails-3.1.5.rc.2 test/fixtures/engine_project/Rakefile
sass-rails-3.1.5.rc.1 test/fixtures/engine_project/Rakefile
sass-rails-3.1.4 test/fixtures/engine_project/Rakefile
sass-rails-3.1.3 test/fixtures/engine_project/Rakefile
sass-rails-3.1.2 test/fixtures/engine_project/Rakefile
sass-rails-3.1.1 test/fixtures/engine_project/Rakefile
wireframe-sass-rails-3.1.0.1 test/fixtures/engine_project/Rakefile
sass-rails-3.1.0 test/fixtures/engine_project/Rakefile
sass-rails-3.1.0.rc.7 test/fixtures/engine_project/Rakefile