forked from rails/activeresource
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathGemfile
More file actions
29 lines (22 loc) · 677 Bytes
/
Gemfile
File metadata and controls
29 lines (22 loc) · 677 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}" }
branch = ENV.fetch("BRANCH", "main")
gem "activesupport", github: "rails/rails", branch: branch
gem "activemodel", github: "rails/rails", branch: branch
gem "activejob", github: "rails/rails", branch: branch
gem "activerecord", github: "rails/rails", branch: branch
gem "sqlite3", branch == "7-0-stable" ? "~> 1.4" : nil
gem "rubocop"
gem "rubocop-minitest"
gem "rubocop-packaging"
gem "rubocop-performance"
gem "rubocop-rails"
gem "rubocop-rails-omakase"
gem "minitest-bisect"
gemspec
platform :mri do
group :test do
gem "ruby-prof"
end
end