Skip to content

Commit 5517fd5

Browse files
committed
Use rspec over rake
1 parent dd783d0 commit 5517fd5

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
bundler_args: --without development
1+
bundler_args: --without development
22
before_install:
33
- gem update --system
44
- gem update bundler
@@ -9,7 +9,6 @@ env:
99
language: ruby
1010
rvm:
1111
- jruby-9000
12-
- 2.2.9
1312
- 2.3.5
1413
- 2.4.4
1514
- 2.5.3
@@ -20,4 +19,6 @@ matrix:
2019
- rvm: jruby-head
2120
- rvm: ruby-head
2221
fast_finish: true
22+
script:
23+
- rspec
2324
sudo: false

Rakefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22

33
require 'bundler/gem_tasks'
44
require 'rubocop/rake_task'
5-
require 'rspec/core/rake_task'
6-
7-
RSpec::Core::RakeTask.new(:spec)
85

96
RuboCop::RakeTask.new
107

11-
task :default => :spec
8+
task :default => :rubocop

0 commit comments

Comments
 (0)