Sha256: 0b9e051853d81ca457936b517d157ba4989be42fad37686f09cdf69c6469d12a
Contents?: true
Size: 635 Bytes
Versions: 19
Compression:
Stored size: 635 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 Bundler.require :default, :development task :environment do Combustion.initialize! end Combustion::Application.load_tasks class Combustion::Application # Add migrations from all engines Railties.engines.each do |engine| config.paths['db/migrate'] += engine.paths['db/migrate'].existent end end desc 'Default: run spec tests.' task :default => :spec # Let Combustion handle database preparation Rake::Task["spec"].prerequisites.clear Bundler::GemHelper.install_tasks
Version data entries
19 entries across 19 versions & 2 rubygems