use bundler to run tests on travis

This commit is contained in:
Torsten Ruger 2017-04-14 13:32:11 +03:00
parent 21b436c476
commit d3f79a1220
2 changed files with 5 additions and 2 deletions

View File

@ -10,8 +10,9 @@ gem "rye"
gem "salama-object-file" , :git => "https://github.com/ruby-x/rubyx-object-file"
#gem "salama-object-file" , :path => "../salama-object-file"
gem "codeclimate-test-reporter", require: nil
group :test do
gem "codeclimate-test-reporter"
end
group :development do
gem "thor" , "0.19.1"

2
test/test_all.rb Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env ruby
Dir["**/test_*.rb"].each { |f|
next if f.include?("stash/")
require_relative "../#{f}"