rubyx/Gemfile
Mark Delk b67a93a487
remove duplicate development gem
Commit 741e9cc61e was missing this.

Leads to annoying errors such as

```
$ bundle
Your Gemfile lists the gem minitest-parallel_fork (>= 0) more than once.
You should probably keep only one of them.
Remove any duplicate entries and specify the gem only once.
While it's not a problem now, it could cause errors if you change the version of one of them later.
```
2020-04-27 18:57:00 -05:00

27 lines
586 B
Ruby

source "https://rubygems.org"
gem "rubyx" , :path => "."
gem "thor"
gem "rake"
gem "rx-file" , git: "https://github.com/ruby-x/rx-file"
#gem "rx-file" , path: "../rx-file"
group :test do
# reporter and parallel dont work together
# gem "minitest-reporters"
gem "codeclimate-test-reporter" , require: false
gem "simplecov"
gem "minitest-color"
gem 'minitest-fail-fast'
gem 'minitest-profile'
gem "minitest-parallel_fork" , require: false
end
group :development do
gem 'guard' # NOTE: this is necessary in newer versions
gem 'guard-minitest'
gem "rb-readline"
end