-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathGemfile
53 lines (41 loc) · 850 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
source 'https://rubygems.org'
ruby '3.3.1'
gem 'puma'
gem 'rails', '~> 7.1.3'
gem 'pg'
gem 'slim-rails'
gem 'sass-rails'
gem 'jquery-rails'
gem 'coffee-rails'
gem 'turbolinks'
gem 'bootstrap', '~> 5.2'
gem 'font-awesome-sass'
gem 'frozen_record'
gem 'rack-cors'
gem 'rails_utils'
gem 'httparty'
gem 'rufus-scheduler'
gem 'nokogiri', '>= 1.8.1'
gem 'rails-html-sanitizer', '>= 1.0.4'
gem 'telegram-bot'
gem 'rqrcode', '~> 1.0'
gem "delayed_job_active_record", "~> 4.1"
group :production do
gem 'runtimeerror_notifier'
end
group :development, :test do
gem 'dotenv-rails'
gem 'spring'
gem 'spring-commands-rspec'
gem 'pry-rails'
gem 'rspec-rails'
gem 'shoulda', require: false
gem 'guard'
gem 'guard-livereload'
gem 'rack-livereload'
gem 'better_errors'
gem 'binding_of_caller'
end
group :test do
gem 'webmock'
end