Sha256: fd98d0294982f1f4b391323625d16d11a1e1a1e9879d7b210cc1cee4904fe0ce

Contents?: true

Size: 434 Bytes

Versions: 2

Compression:

Stored size: 434 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

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
  # no rspec available
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
commontator-4.10.5 Rakefile
commontator-4.10.4 Rakefile