Improve default rake task by removing appraisal

This commit is contained in:
Joshua Clayton 2016-02-05 10:09:50 -05:00
parent 25775b6f47
commit 577d4caa51
2 changed files with 2 additions and 4 deletions

View File

@ -9,7 +9,7 @@ before_install:
- gem update --system
- gem update bundler
install: "bundle install"
script: "bundle exec rake spec:unit spec:acceptance features"
script: "bundle exec rake"
jdk:
- openjdk6
gemfile:

View File

@ -9,9 +9,7 @@ require 'cucumber/rake/task'
Bundler::GemHelper.install_tasks
desc 'Default: run the specs and features.'
task :default do
system("bundle exec rake -s appraisal spec:unit spec:acceptance features;")
end
task default: %i(spec:unit spec:acceptance features)
namespace :spec do
desc "Run unit specs"