Sha256: e502a596c37bf493dcd35e447c71d92f2e49a3d8c0247ad1503642891f56eef8

Contents?: true

Size: 618 Bytes

Versions: 6

Compression:

Stored size: 618 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    = 'Georgia'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Bundler::GemHelper.install_tasks
APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
georgia-0.7.8 Rakefile
georgia-0.7.7 Rakefile
georgia-0.7.6 Rakefile
georgia-0.7.5 Rakefile
georgia-0.7.4 Rakefile
georgia-0.7.3 Rakefile