Sha256: 60c0a238adeed5d804883b66d0c97174ee6361fb20ef639dc1f620970464a647

Contents?: true

Size: 624 Bytes

Versions: 17

Compression:

Stored size: 624 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    = 'Manifest'
  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

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
manifest-rails-0.2.8 Rakefile
manifest-rails-0.2.7 Rakefile
manifest-rails-0.2.6 Rakefile
manifest-rails-0.2.5 Rakefile
manifest-rails-0.2.4 Rakefile
manifest-rails-0.2.3 Rakefile
manifest-rails-0.2.2 Rakefile
manifest-rails-0.2.1 Rakefile
manifest-rails-0.2.0 Rakefile
manifest-rails-0.1.3 Rakefile
manifest-rails-0.1.2 Rakefile
manifest-rails-0.1.1 Rakefile
manifest-rails-0.1.0 Rakefile
manifest-rails-0.0.4 Rakefile
manifest-rails-0.0.3 Rakefile
manifest-rails-0.0.2 Rakefile
manifest-rails-0.0.1 Rakefile