Sha256: a2f056544dc08fbef85be4688f9c96870caa108ff3913e3a70af7c9520e73696

Contents?: true

Size: 638 Bytes

Versions: 38

Compression:

Stored size: 638 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    = 'SpudBlog'
  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

require 'rake'

Version data entries

38 entries across 38 versions & 2 rubygems

Version Path
tb_blog-1.3.3 Rakefile
tb_blog-1.3.2 Rakefile
tb_blog-1.3.1 Rakefile
tb_blog-1.3.0 Rakefile
tb_blog-1.3.0.beta1 Rakefile
tb_blog-1.2.1 Rakefile
tb_blog-1.2.0 Rakefile
spud_blog-1.0.2 Rakefile
spud_blog-1.0.1 Rakefile
spud_blog-1.0.0 Rakefile
tb_blog-1.1.3 Rakefile
tb_blog-1.1.2 Rakefile
tb_blog-1.1.1 Rakefile
tb_blog-1.1.0 Rakefile
spud_blog-1.0.0.rc1.1 Rakefile
spud_blog-1.0.0.rc1 Rakefile
tb_blog-1.0.4 Rakefile
tb_blog-1.0.3 Rakefile
spud_blog-0.9.11 Rakefile
tb_blog-1.0.2 Rakefile