Sha256: 0f9df5d48648c89eabc933b0dff8dd2617b285aa1699a6c94b7d4d7ae791229e

Contents?: true

Size: 658 Bytes

Versions: 5

Compression:

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

load 'lib/tasks/tandem_tasks.rake'

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

Bundler::GemHelper.install_tasks



Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
tandem-0.2.3 Rakefile
tandem-0.2.2 Rakefile
tandem-0.2.1 Rakefile
tandem-0.2.0 Rakefile
tandem-0.2.0.rc Rakefile