-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathGemfile
More file actions
40 lines (32 loc) · 1013 Bytes
/
Copy pathGemfile
File metadata and controls
40 lines (32 loc) · 1013 Bytes
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
36
37
38
39
40
source "https://rubygems.org"
gemspec
gem "activerecord", "~> 8.1.0"
gem "mongoid", "~> 9.0.0"
gem "sqlite3", platform: :ruby
gem "amazing_print"
gem "appraisal"
gem "rake"
gem "rubyzip", platform: :ruby
# BZip2 file support
gem "bzip2-ffi"
# v1.8.9 blows up with `NoMethodError: undefined method 'deep_merge!' for {}:Concurrent::Hash` on JRuby
# gem "i18n", "1.8.7"
group :development do
gem "rubocop"
gem "rubocop-minitest", require: false
gem "rubocop-rake", require: false
gem "solargraph", require: false, platform: :ruby
# Test against master
# gem "iostreams", git: "https://github.com/rocketjob/iostreams"
# Testing against locally cloned repos
# gem "iostreams", path: "../iostreams"
gem "semantic_logger", github: "reidmorrison/semantic_logger"
# gem "symmetric-encryption", path: "../symmetric-encryption"
end
group :test do
gem "minitest", "~> 6.0"
gem "minitest-mock"
gem "minitest-reporters"
gem "minitest-stub_any_instance"
gem "simplecov", require: false
end