-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
110 lines (83 loc) · 2.17 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '>= 3.3.6'
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem 'rails'
# The modern asset pipeline for Rails [https://github.com/rails/propshaft]
gem 'propshaft'
# javascript next step.
gem 'jsbundling-rails'
# css next step.
gem 'cssbundling-rails'
gem 'font-awesome-sass'
# Use postgresql as the database for Active Record
gem 'pg'
# Use the Puma web server [https://github.com/puma/puma]
gem 'puma'
# 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'
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
gem 'jbuilder'
# login form
gem 'devise', '~> 4.8', '>= 4.8.1'
gem 'devise-i18n'
gem 'devise-bootstrap-views'
gem 'paranoia'
# pagenate
gem 'dotenv-rails'
gem 'kaminari'
gem 'kaminari-i18n'
gem 'nokogiri'
# markdown
gem 'redcarpet'
gem 'rouge'
# uploads images
gem 'carrierwave'
#gem 'rmagick'
# csv
gem 'csv'
gem 'roo'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', require: false
# two factor
gem 'rotp'
gem 'rqrcode'
# The default gems starting from Ruby 3.5.0.
gem 'ostruct'
# mail opener
# gem 'letter_opener_web', '~> 2.0'
# gem 'readapt'
# License view
# gem 'license_finder'
group :development, :test do
# rspec
gem 'rspec'
gem 'factory_bot_rails'
gem 'rspec-rails', '~> 3.9', '>= 3.9.1'
gem 'spring-commands-rspec'
gem 'capybara'
# rubocop
# gem 'rubocop', require: false
# gem 'rubocop-performance', require: false
# gem 'rubocop-rails', require: false
end
group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem 'web-console'
# Don't delete My Gemfile in Library.
gem 'listen'
# gem 'htmlbeautifier'
# gem 'erb-formatter'
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
# gem 'capybara'
# gem 'webdrivers'
# gem 'debug'
end
# use windows env
gem 'tzinfo-data' if Gem.win_platform?
gem 'wdm' if Gem.win_platform?