-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
35 lines (29 loc) · 894 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
source 'https://rubygems.org'
gemspec
group :development do
gem 'pry', platforms: %i[jruby rbx]
gem 'pry-byebug', platforms: :mri
gem 'rubocop-performance'
gem 'rubocop-rake'
gem 'rubocop-rspec'
gem 'yard-junk'
# WIP
gem 'dry-monitor' # @see bin/console
gem 'rouge' # @see lib/dry/monitor/ldap/logger.rb
end
group :test do
gem 'libxml-ruby' # @see spec/unit/relation/export_spec.rb
gem 'msgpack' # @see spec/unit/relation/export_spec.rb
gem 'oj' # @see spec/unit/relation/export_spec.rb
gem 'rom-factory'
gem 'rspec'
gem 'simplecov'
# WIP
# gem 'rom-sql' # @see spec/integration/rom_sql_spec.rb
# gem 'rubyntlm' # @see spec/unit ...
# gem 'sqlite3' # @see spec/integration/rom_sql_spec.rb
end
group :benchmark do
gem 'benchmark-ips'
gem 'net-ldap'
end