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

Version Path
ffcrm_cloudfuji-0.4.1 Rakefile
ffcrm_cloudfuji-0.3.1 Rakefile
ffcrm_cloudfuji-0.3.0 Rakefile
ffcrm_cloudfuji-0.2.11 Rakefile
ffcrm_cloudfuji-0.2.10 Rakefile
ffcrm_cloudfuji-0.2.9 Rakefile
ffcrm_cloudfuji-0.2.8 Rakefile
ffcrm_cloudfuji-0.2.7 Rakefile
ffcrm_cloudfuji-0.2.6 Rakefile
ffcrm_cloudfuji-0.2.5 Rakefile
ffcrm_cloudfuji-0.2.4 Rakefile
ffcrm_cloudfuji-0.2.3 Rakefile
ffcrm_cloudfuji-0.2.2 Rakefile
ffcrm_cloudfuji-0.2.1 Rakefile
errbit_cloudfuji-0.1.0 Rakefile
ffcrm_cloudfuji-0.2.0 Rakefile
ffcrm_cloudfuji-0.1.7 Rakefile
ffcrm_cloudfuji-0.1.6 Rakefile
ffcrm_cloudfuji-0.1.5 Rakefile