e94c9ea37b
tired of waiting for the almost 1000 tests to run through, just to get an error message
24 lines
465 B
Ruby
24 lines
465 B
Ruby
source "https://rubygems.org"
|
|
|
|
gem "rubyx" , :path => "."
|
|
|
|
gem "rake"
|
|
gem "rye"
|
|
|
|
gem "rx-file" , git: "https://github.com/ruby-x/rx-file"
|
|
#gem "rx-file" , path: "../rx-file"
|
|
|
|
group :test do
|
|
gem "codeclimate-test-reporter" , require: false
|
|
gem "simplecov"
|
|
gem "minitest-color"
|
|
gem 'minitest-fail-fast'
|
|
end
|
|
|
|
group :development do
|
|
gem "thor" , "0.19.1"
|
|
gem 'guard' # NOTE: this is necessary in newer versions
|
|
gem 'guard-minitest'
|
|
gem "rb-readline"
|
|
end
|