We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd783d0 commit 5517fd5Copy full SHA for 5517fd5
.travis.yml
@@ -1,4 +1,4 @@
1
-bundler_args: --without development
+bundler_args: --without development
2
before_install:
3
- gem update --system
4
- gem update bundler
@@ -9,7 +9,6 @@ env:
9
language: ruby
10
rvm:
11
- jruby-9000
12
- - 2.2.9
13
- 2.3.5
14
- 2.4.4
15
- 2.5.3
@@ -20,4 +19,6 @@ matrix:
20
19
- rvm: jruby-head
21
- rvm: ruby-head
22
fast_finish: true
+script:
23
+ - rspec
24
sudo: false
Rakefile
@@ -2,10 +2,7 @@
require 'bundler/gem_tasks'
require 'rubocop/rake_task'
5
-require 'rspec/core/rake_task'
6
-
7
-RSpec::Core::RakeTask.new(:spec)
8
RuboCop::RakeTask.new
-task :default => :spec
+task :default => :rubocop
0 commit comments