-
Notifications
You must be signed in to change notification settings - Fork 22
/
Gemfile
37 lines (29 loc) · 918 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
36
37
source "https://rubygems.org"
gemspec
gem "activerecord", "~> 7.1.0"
gem "activerecord-jdbcsqlite3-adapter", "~> 70.1", platform: :jruby
gem "jdbc-sqlite3", platform: :jruby
gem "mongoid", "~> 8.0"
gem "sqlite3", "~> 1.4", 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"
# Test against master
# gem "iostreams", git: "https://github.com/rocketjob/iostreams"
# Testing against locally cloned repos
# gem "iostreams", path: "../iostreams"
# gem "semantic_logger", path: "../semantic_logger"
# gem "symmetric-encryption", path: "../symmetric-encryption"
end
group :test do
gem "minitest"
gem "minitest-reporters"
gem "minitest-stub_any_instance"
end