-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGemfile
More file actions
35 lines (25 loc) · 1.06 KB
/
Gemfile
File metadata and controls
35 lines (25 loc) · 1.06 KB
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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
git_source(:gitlab) { |repo_name| "https://gitlab.com/#{repo_name}" }
#### IMPORTANT #######################################################
# Gemfile is for local development ONLY; Gemfile is NOT loaded in CI #
####################################################### IMPORTANT ####
# Include dependencies from <gem name>.gemspec
gemspec
platform :mri do
# Debugging - Ensure ENV["DEBUG"] == "true" to use debuggers within spec suite
# Use binding.break, binding.b, or debugger in code
gem "debug", ">= 1.0.0" # ruby >= 2.7
gem "gem_bench", "~> 2.0", ">= 2.0.5"
# Dev Console - Binding.pry - Irb replacement
gem "pry", "~> 0.14" # ruby >= 2.0
end
# Code Coverage
eval_gemfile "gemfiles/modular/coverage.gemfile"
# Linting
eval_gemfile "gemfiles/modular/style.gemfile"
# Documentation
eval_gemfile "gemfiles/modular/documentation.gemfile"
# Optional
eval_gemfile "gemfiles/modular/optional.gemfile"