Sha256: bc4af920931f5977c6936b3f5afa248b26ee65e8364d3204412e4ecd88925618
Contents?: true
Size: 477 Bytes
Versions: 32
Compression:
Stored size: 477 Bytes
Contents
#!/usr/bin/env rake # frozen_string_literal: true begin require 'bundler/setup' Bundler.require # get the rails rake tasks to test things like assets:precompile. require 'combustion' Combustion.initialize! Combustion::Application.load_tasks rescue LoadError puts 'You must `gem install bundler` and `bundle install` to run rake tasks' end Bundler::GemHelper.install_tasks require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) task :default => :spec
Version data entries
32 entries across 32 versions & 1 rubygems