-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
27 lines (22 loc) · 953 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
# Specify your gem's dependencies in ruby-lsp-rubyfmt.gemspec
gemspec
# sorbet-static is not available on Windows. We also skip Tapioca since it depends on sorbet-static-and-runtime
# C Ruby (MRI), Rubinius or TruffleRuby, but NOT Windows
NON_WINDOWS_PLATFORMS = [:ruby]
group :development do
gem "bundler", "~> 2.4.2"
gem "debug", "~> 1.8", require: false
gem "minitest", "~> 5.20"
gem "minitest-reporters", "~> 1.6"
gem "rake", "~> 13.1"
gem "rubocop", "~> 1.57"
gem "rubocop-shopify", "~> 2.14", require: false
gem "rubocop-minitest", "~> 0.33.0", require: false
gem "rubocop-rake", "~> 0.6.0", require: false
gem "rubocop-sorbet", "~> 0.7", require: false
gem "sorbet-static-and-runtime", platforms: NON_WINDOWS_PLATFORMS
gem "tapioca", require: false, platforms: NON_WINDOWS_PLATFORMS
end