-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
29 lines (23 loc) · 814 Bytes
/
Gemfile
File metadata and controls
29 lines (23 loc) · 814 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
source "https://rubygems.org"
# Include dependencies from <gem name>.gemspec
gemspec
gem "nomono", "~> 1.0", require: false
require "nomono/bundler"
local_companion_gems = %w[
rubocop-lts-rspec
standard-rubocop-lts
]
if ENV.fetch("RUBOCOP_LTS_DEV", "false").casecmp("false").zero?
gem "rubocop-lts-rspec", "~> 1.0", github: "rubocop-lts/rubocop-lts-rspec"
else
local_companion_gems_by_name = nomono_gems(
gems: local_companion_gems,
prefix: "RUBOCOP_LTS",
root: %w[code src rubocop-lts]
)
gem "rubocop-lts-rspec", "~> 1.0", path: local_companion_gems_by_name.fetch("rubocop-lts-rspec")
gem "standard-rubocop-lts", path: local_companion_gems_by_name.fetch("standard-rubocop-lts")
end
# Documentation
eval_gemfile "gemfiles/modular/documentation.gemfile"
gem "byebug", platform: :mri