-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
64 lines (46 loc) · 1.83 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '~>3.4.1'
# for proxy
gem 'mini_racer', '~>0.16.0'
gem 'proxy_pac_rb', github: 'net1957/proxy_pac_rb', branch: 'miniracer'
# for forms
gem 'simple_form', '~>5.0'
# to access configuration
gem 'hashie', '~>5.0'
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem 'rails', '~>7.1.0', '>=7.1.2'
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem 'sprockets-rails'
# Bundle and transpile JavaScript [https://github.com/rails/jsbundling-rails]
# gem "jsbundling-rails"
# SK importmap
gem 'importmap-rails'
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem 'turbo-rails'
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem 'stimulus-rails'
# Bundle and process CSS [https://github.com/rails/cssbundling-rails]
gem 'cssbundling-rails'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
# bundle exec rails redoc_dev generates the API under doc/app.
gem 'sdoc', group: :doc
# TODO: check if needed in future gems update
# gems suppressed from standard library in ruby 3.5.0 (to suppress deprecation warning at startup)
gem 'ostruct'
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem 'debug', platforms: %i[mri mingw x64_mingw]
end
group :development do
# to lint ruby
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
# Use Puma as the app server
gem 'puma'
end