Sha256: e6311028f30db11fe7ac6b85b77a532ae79a108c62d7250ec6a0254a486795bf

Contents?: true

Size: 895 Bytes

Versions: 13

Compression:

Stored size: 895 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    = 'Listings'
  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/testtask'

begin
  require 'rspec/core/rake_task'
  RSpec::Core::RakeTask.new(:spec)

  task :default => :spec
  task :test => :spec
  task :spec => :'app:db:drop'
  task :spec => :'app:db:create'
  task :spec => :'app:db:schema:load'
rescue LoadError
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
listings-0.1.15 Rakefile
listings-0.1.14 Rakefile
listings-0.1.13 Rakefile
listings-0.1.12 Rakefile
listings-0.1.11 Rakefile
listings-0.1.10 Rakefile
listings-0.1.8 Rakefile
listings-0.1.7 Rakefile
listings-0.1.6 Rakefile
listings-0.1.5 Rakefile
listings-0.1.4 Rakefile
listings-0.1.0 Rakefile
listings-0.0.3 Rakefile