forked from bardbess/masq
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
50 lines (35 loc) · 1.39 KB
/
Gemfile
File metadata and controls
50 lines (35 loc) · 1.39 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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 ####
# Load order it important for combustion, so make sure it loads first!
gem "combustion", "~> 1.5"
# Gems that have been removed from stdlib need to be added to the Gemfile explicitly
gem "logger"
gem "rexml"
gem "mutex_m", "~> 0.2"
gem "stringio", "~> 3.0"
# Include dependencies from <gem name>.gemspec
gemspec
# Security Audit
eval_gemfile "gemfiles/modular/audit.gemfile"
# Debugging
eval_gemfile "gemfiles/modular/debug.gemfile"
# Code Coverage
eval_gemfile "gemfiles/modular/coverage.gemfile"
# Linting
eval_gemfile "gemfiles/modular/style.gemfile"
# Documentation
eval_gemfile "gemfiles/modular/documentation.gemfile"
# DB Adapters
eval_gemfile "gemfiles/modular/db_adapters.gemfile"
# Testing
eval_gemfile "gemfiles/modular/mini_testing.gemfile"
# Local Testing (not applicable to CI)
# gem "guard-minitest"
gem "appraisal", github: "pboling/appraisal", branch: "galtzo"
# For local testing we'll use Rails v8.0
# In CI we'll use `combustion` and `appraisal` to test other versions
gem "rails", "~> 8.0", ">= 8.0.2"