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-1.1.2 Rakefile
marty-1.1.1 Rakefile
marty-1.0.54 Rakefile
marty-1.0.53 Rakefile
marty-1.0.52 Rakefile
marty-1.0.51 Rakefile
marty-1.0.50 Rakefile
marty-1.0.48 Rakefile
marty-1.0.47 Rakefile
marty-1.0.46 Rakefile
marty-1.0.44 Rakefile
marty-1.0.43 Rakefile
marty-1.0.42 Rakefile
marty-1.0.41 Rakefile
marty-1.0.39 Rakefile
marty-1.0.38 Rakefile
marty-1.0.37 Rakefile
marty-1.0.36 Rakefile
marty-1.0.35 Rakefile
marty-1.0.34 Rakefile