-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathGemfile
More file actions
20 lines (16 loc) · 782 Bytes
/
Gemfile
File metadata and controls
20 lines (16 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true
source "https://rubygems.org"
gemspec
gem "debug", platform: :mri
platforms :jruby do
gem "activerecord-jdbcsqlite3-adapter", ">= 70.1"
gem "jdbc-sqlite3", "<3.42" # version 3.42.0 is broken
end
gem "sqlite3", platform: [:mri, :truffleruby]
gem 'activerecord', "~> #{ENV['AR_VERSION'] || '7.1.0'}"
# Had to add this for a bit, since none of the latest changes have been pushed to gems yet
# gem "trailblazer", github: "trailblazer/trailblazer"
# gem "trailblazer-operation", github: "trailblazer/trailblazer-operation"
# gem "trailblazer-activity", github: "trailblazer/trailblazer-activity"
# gem "trailblazer-macro", github: "trailblazer/trailblazer-macro"
# gem "trailblazer-macro-contract", github: "trailblazer/trailblazer-macro-contract"