Sha256: 5e89bc4d0515ae13395ec67f7ef0ad51b5ffdaac39c7cf948408d32669fe1cf3

Contents?: true

Size: 620 Bytes

Versions: 50

Compression:

Stored size: 620 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    = 'Rostra'
  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

50 entries across 50 versions & 1 rubygems

Version Path
rostra-0.3.6 Rakefile
rostra-0.3.5 Rakefile
rostra-0.3.4 Rakefile
rostra-0.3.3 Rakefile
rostra-0.3.2 Rakefile
rostra-0.3.1 Rakefile
rostra-0.2.1 Rakefile
rostra-0.2.0 Rakefile
rostra-0.1.26 Rakefile
rostra-0.1.25 Rakefile
rostra-0.1.24 Rakefile
rostra-0.1.23 Rakefile
rostra-0.1.22 Rakefile
rostra-0.1.21 Rakefile
rostra-0.1.20 Rakefile
rostra-0.1.19 Rakefile
rostra-0.1.18 Rakefile
rostra-0.1.17 Rakefile
rostra-0.1.16 Rakefile
rostra-0.1.15 Rakefile