Skip to content

Commit

Permalink
Fixes broken Rakefile.
Browse files Browse the repository at this point in the history
It was unable to run specs.
  • Loading branch information
futhr committed Dec 29, 2014
1 parent 8bbaa52 commit ba1a201
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
require 'bundler'
Bundler::GemHelper.install_tasks
Bundler.setup

require 'rspec/core/rake_task'
require 'spree/testing_support/common_rake'

desc "Default Task"
task default: [:spec]
RSpec::Core::RakeTask.new

desc "Generates a dummy app for testing"
task default: :spec

desc 'Generates a dummy app for testing'
task :test_app do
ENV['LIB_NAME'] = 'spree_related_products'
Rake::Task['common:test_app'].invoke
Expand Down

0 comments on commit ba1a201

Please sign in to comment.