-
Notifications
You must be signed in to change notification settings - Fork 11
/
Gemfile
30 lines (22 loc) · 854 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
source 'https://rubygems.org'
# Other schema validation Gems for benchmark comparisons
group :benchmark do
# https://github.com/hoxworth/json-schema
gem 'json-schema'
# https://github.com/JamesBrooks/hash_validator
gem 'hash_validator'
# https://github.com/djsun/schema_hash
gem 'schema_hash'
end
# MessagePack for super fast serialization
# http://msgpack.org
gem 'msgpack', groups: [:benchmark, :test]
# RSpec for tests
gem 'rspec', '~> 3.5', group: :test
# SimpleCov for offline test coverage
gem 'simplecov', '~> 0.17.0', '< 0.18', require: false, group: :test
# Code Climate for online test coverage
gem 'codeclimate-test-reporter', '~> 0.6.0', require: false, group: :test
# Pry for debugging while developing
gem 'pry', require: false, group: :development
gem 'pry-byebug', require: false, group: :development, platforms: :mri