File tree Expand file tree Collapse file tree 2 files changed +5
-13
lines changed Expand file tree Collapse file tree 2 files changed +5
-13
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ group :test do
6
6
gem "rake"
7
7
gem "rack-test" , "~> 0.5"
8
8
gem "mocha" , "~> 0.9.7"
9
- gem "leftright" , :platforms => :mri_18
10
9
gem "yajl-ruby" , "~>0.8.2" , :platforms => :mri
11
10
gem "json" , "~>1.5.3" , :platforms => [ :jruby , :rbx ]
12
11
gem "hoptoad_notifier"
Original file line number Diff line number Diff line change @@ -20,18 +20,11 @@ require 'rake/testtask'
20
20
21
21
task :default => :test
22
22
23
- if command? ( :rg )
24
- desc "Run the test suite with rg"
25
- task :test do
26
- Dir [ 'test/**/*_test.rb' ] . each do |f |
27
- sh ( "rg #{ f } " )
28
- end
29
- end
30
- else
31
- Rake ::TestTask . new do |test |
32
- test . libs << "test"
33
- test . test_files = FileList [ 'test/**/*_test.rb' ]
34
- end
23
+ Rake ::TestTask . new do |test |
24
+ test . verbose = true
25
+ test . libs << "test"
26
+ test . libs << "lib"
27
+ test . test_files = FileList [ 'test/**/*_test.rb' ]
35
28
end
36
29
37
30
if command? :kicker
You can’t perform that action at this time.
0 commit comments