forked from joakimk/pipeline
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
36 lines (31 loc) · 911 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
28
29
30
31
32
33
34
35
36
source "https://rubygems.org"
ruby file: ".ruby-version"
gem "rails", "~> 7.1.3" # LOCKED: It's Rails!
gem "attr_extras"
gem "barsoom_utils"
gem "bootstrap-sass" # Assets
gem "bootstrap_forms", github: "barsoom/bootstrap_forms"
gem "honeybadger"
gem "httparty"
gem "importmap-rails"
gem "jwt_authentication", github: "barsoom/jwt_authentication"
gem "logger" # Ruby 3.5.0 will no longer have this as a part of standard gems. Reason: activesupport 7.1.4
gem "mail"
gem "ostruct" # Ruby 3.5.0 will no longer have this as a part of standard gems. Reason: pry 0.14.2
gem "paper_trail"
gem "pg"
gem "puma"
gem "redis"
gem "sassc-rails" # Assets
gem "slim"
gem "tzinfo-data"
group :development, :test do
gem "pry"
gem "rspec-rails"
gem "rspec_junit_formatter", require: false
gem "rubocop" # See .rubocop.yml for configuration and docs.
end
group :test do
gem "capybara"
gem "factory_bot_rails"
end