Sha256: 784b5762afb5f007ab278b17cf14773cea4d28179be4d14e9d75ba42c76d5234

Contents?: true

Size: 797 Bytes

Versions: 23

Compression:

Stored size: 797 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    = 'Rich'
  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

23 entries across 23 versions & 2 rubygems

Version Path
st-rich-1.5.1 Rakefile
rich-1.4.6 Rakefile
rich-1.4.5 Rakefile
rich-1.4.4 Rakefile
rich-1.4.3 Rakefile
rich-1.4.2 Rakefile
rich-1.4.1 Rakefile
rich-1.4 Rakefile
rich-1.3.1 Rakefile
rich-1.3.0 Rakefile
rich-1.2.0 Rakefile
rich-1.1.0 Rakefile
rich-1.0.3 Rakefile
rich-1.0.2 Rakefile
rich-1.0.1 Rakefile
rich-1.0.0 Rakefile
rich-0.0.8 Rakefile
rich-0.0.7 Rakefile
rich-0.0.6 Rakefile
rich-0.0.4 Rakefile