-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
152 lines (125 loc) · 4.07 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# ruby '2.7.4'
ruby "3.1.2"
# gem 'nokogiri', '1.12.5'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
# 7.0.0 UPGRADE
gem "rails", "~> 7.0.0"
gem "turbo-rails"
# end of 7.0.0 UPGRADE v df
#STRIPE setup
# STRIPE SWITCH OFF
gem "money-rails", "~> 1.12"
gem "stripe"
gem "stripe_event"
# gem "recaptcha"
gem "recaptcha"
# Use postgresql as the database for Active Record
gem "pg", ">= 0.18", "< 2.0"
# Use Puma as the app server
gem "puma", "~> 4.1"
# Use SCSS for stylesheets and minifies them
gem "sassc-rails"
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem "webpacker", "~> 4.0"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder", "~> 2.7"
# Use Redis adapter to run Action Cable in production
gem "redis", "~> 4.0"
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# action cable with sidekiq
gem "sidekiq"
# gem "actioncable-enhanced-postgresql-adapter" back to Redis for Action Cable
# Admin
gem "rails_admin", "~> 3.0"
# Use Active Storage variant
gem "image_processing", "~> 1.2"
# Reduces boot times through caching; required errrein config/boot.rb
gem "bootsnap", ">= 1.4.2", require: false
# =============== SETUP SINCE ruby 3.1.2 migration===================
# force psych version for ruby 3.1.2 migration
gem "psych", "< 4"
# to resolve rspec issues since migrating to ruby 3.1.2
gem "net-smtp", require: false
gem "net-imap", require: false
gem "net-pop", require: false
# =============== END SETUP SINCE ruby 3.1.2 migration===================
# add sweet alert
gem "devise"
# devise plug_in to manage last seen
gem "devise_last_seen"
gem "sweetalert2"
gem "pundit"
gem "autoprefixer-rails", "10.2.5"
gem "font-awesome-sass"
gem "simple_form"
gem "rails-i18n"
gem "bootstrap", "~> 5.2"
# add red or unred object gem
gem "unread"
# act_as_list help manage list
gem 'acts_as_list', '~> 0.7.2'
gem 'requestjs-rails' #help for simple JS http resquest
# xlsx spreadsheet generation
gem "caxlsx"
gem "caxlsx_rails"
# xlsx spreadsheet upload and read
gem 'simple_xlsx_reader', '~> 1.0', '>= 1.0.4'
gem "roo", "~> 2.10.0"
# reduce log size with lograge
gem "lograge"
# gem de navbar
gem "simple_calendar", "~> 2.4"
# gem for pdf-output
gem "wicked_pdf"
gem "wkhtmltopdf-binary", "~> 0.12.3", group: :development
# gem "wkhtmltopdf-binary", group: :development
# gem 'wkhtmltopdf-heroku', '~> 2.12', '>= 2.12.6.0'
# gem "wkhtmltopdf-heroku", group: :production
gem "wkhtmltopdf-heroku", "3.0.0", group: :production #test for heroku stack 24
# Mobile device detection
gem "mobile"
gem "browser"
# view_component
gem "view_component"
# Simple cov test
gem "simplecov", require: false, group: :test
group :development, :test do
gem "rails-controller-testing"
gem "erb-formatter"
gem "htmlbeautifier"
gem "pry-byebug"
gem "pry-rails"
gem "dotenv-rails"
# autoindent erb file
gem "debug", platforms: %i[ mri mingw x64_mingw ]
gem "rspec-rails"
gem "factory_bot_rails"
gem "shoulda-matchers", "~> 4.0"
gem "faker"
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem "bullet"
gem "web-console", ">= 3.3.0"
gem "listen", "~> 3.2"
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
gem "rubocop-rails", require: false
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem "capybara", ">= 2.15"
gem "selenium-webdriver"
# Easy installation and use of web drivers to run system tests with browsers
gem "webdrivers"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# add cloudinary
gem "cloudinary", "~> 1.16.0"