Skip to content

Commit

Permalink
Move rspec execution from Travis config to Rakefile
Browse files Browse the repository at this point in the history
  • Loading branch information
thisismydesign committed Apr 25, 2017
1 parent e1ada97 commit 050d6d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ language: ruby
rvm:
- 2.3.3
before_install: gem install bundler -v 1.14.6
script: bundle exec rspec
4 changes: 4 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
require "bundler/gem_tasks"
require "rspec/core/rake_task"

RSpec::Core::RakeTask.new(:spec)

task :default => :spec

0 comments on commit 050d6d1

Please sign in to comment.