Sha256: 95f64b37c1e44978689a3e544e6e2a9e6a99bb68b05bbf3c545251e19512bf81

Contents?: true

Size: 646 Bytes

Versions: 137

Compression:

Stored size: 646 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    = 'Marty'
  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

137 entries across 137 versions & 1 rubygems

Version Path
marty-0.5.31 Rakefile
marty-0.5.30 Rakefile
marty-0.5.29 Rakefile
marty-0.5.28 Rakefile
marty-0.5.27 Rakefile
marty-0.5.26 Rakefile
marty-0.5.25 Rakefile
marty-0.5.24 Rakefile
marty-0.5.23 Rakefile
marty-0.5.21 Rakefile
marty-0.5.20 Rakefile
marty-0.5.19 Rakefile
marty-0.5.18 Rakefile
marty-0.5.17 Rakefile
marty-0.5.16 Rakefile
marty-0.5.15 Rakefile
marty-0.5.14 Rakefile