diff --git a/.travis.yml b/.travis.yml index 7a0e086..81a87a1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,4 +3,3 @@ language: ruby rvm: - 2.3.3 before_install: gem install bundler -v 1.14.6 -script: bundle exec rspec diff --git a/Rakefile b/Rakefile index 43022f7..b7e9ed5 100644 --- a/Rakefile +++ b/Rakefile @@ -1,2 +1,6 @@ require "bundler/gem_tasks" +require "rspec/core/rake_task" + +RSpec::Core::RakeTask.new(:spec) + task :default => :spec