rubyx/Gemfile
Torsten Ruger 7fc104a019 Use minitest-profile to find long tests
Only found one big fibo
All else due to large amount of objects
(now with factories it jumped from hundreds to thousands)
2018-09-02 13:58:42 +03:00

27 lines
534 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'
gem 'minitest-profile'
#gem "minitest-reporters"
gem "net-ssh"
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