Sha256: 42b6b8c8a66c492d90a86bd95f3c5121c4f0e58063713f9cc90af73f27323556

Contents?: true

Size: 740 Bytes

Versions: 23

Compression:

Stored size: 740 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    = 'Garage'
  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

begin
  require 'rspec/core/rake_task'
  RSpec::Core::RakeTask.new(:spec)
  task :default => :spec
rescue LoadError
end

Version data entries

23 entries across 23 versions & 2 rubygems

Version Path
the_garage-2.8.2 Rakefile
the_garage-2.8.1 Rakefile
the_garage-2.8.0 Rakefile
the_garage-2.7.0 Rakefile
the_garage-2.6.1 Rakefile
the_garage-2.6.0 Rakefile
the_garage-2.5.0 Rakefile
the_garage-2.4.4 Rakefile
the_garage-2.4.3 Rakefile
the_garage-2.4.2 Rakefile
the_garage-2.4.1 Rakefile
the_garage-2.4.0 Rakefile
the_garage-2.3.3 Rakefile
the_garage-2.3.2 Rakefile
the_garage-2.3.1 Rakefile
the_garage-2.3.0 Rakefile
the_garage-2.2.0 Rakefile
the_garage-2.1.0 Rakefile
the_garage-2.0.3 Rakefile
the_garage-2.0.2 Rakefile