-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
81 lines (66 loc) · 2.06 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby file: '.ruby-version'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.2.1'
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 2.1'
# Use Puma as the app server
gem 'puma', '~> 6.4'
# Asset handling
gem 'bootstrap', '~> 5.3.3'
gem 'bootstrap-icons-helper'
gem 'dartsass-rails'
gem 'dartsass-sprockets'
gem 'importmap-rails'
gem 'sprockets-rails'
gem 'stimulus-rails'
gem 'turbo-rails'
# Use Active Model has_secure_password
gem 'bcrypt', '~> 3.1.20'
gem 'breadcrumbs_on_rails'
gem 'cancancan'
gem 'deep_merge', require: "deep_merge/core"
gem 'diffy'
gem 'faker'
gem 'friendly_id', '~> 5.5.1'
gem 'hiera-eyaml'
gem 'net-ldap', require: "net/ldap"
gem 'puppet'
gem 'puppetdb-ruby', require: 'puppetdb'
gem 'ruby-saml'
# To use retry middleware with Faraday v2.0+
gem 'faraday-retry'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'factory_bot_rails'
gem 'simplecov', require: false
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
end
gem 'listen', '~> 3.9' # need for rake to precompile assets
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 2.15'
gem 'rspec-openapi'
gem 'selenium-webdriver'
end
group :linter do
gem 'rubocop', '~> 1.67.0'
gem 'rubocop-capybara', '~> 2.21.0'
gem 'rubocop-performance', '~> 1.22.1'
gem 'rubocop-rails', '~> 2.27.0'
gem 'rubocop-rake', '~> 0.6.0'
end
group :release do
gem 'github_changelog_generator', '>= 1.16.1', require: false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'git'
gem 'gitable', require: "gitable/uri"
# dependencies & sec fixes
gem 'mini_racer' # minimal Google V8 JS engine for execjs