-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
56 lines (51 loc) · 1.21 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 7.1.0"
gem "sprockets-rails"
gem "foreman"
gem 'pg', '~> 1.0'
gem 'responders'
gem 'sass-rails', '~> 5.0'
gem 'uglifier'
gem 'jquery-rails', '4.3.5'
gem 'json'
gem 'jbuilder', '~> 2.0'
gem 'haml'
gem 'nokogiri'
gem 'simple_form'
gem 'breadcrumbs_on_rails'
gem 'mail_form'
gem 'will_paginate'
gem 'will_paginate-bootstrap4'
gem 'elasticsearch-model'
gem 'elasticsearch-rails'
gem 'recaptcha', require: 'recaptcha/rails'
gem 'httparty'
gem 'rubyzip'
gem 'net-ldap'
gem 'figaro'
gem 'wkhtmltopdf-binary'
gem 'wicked_pdf'
gem 'active_storage_validations'
gem "font-awesome-sass", "~> 6.2.1"
group :development do
gem 'puma'
gem 'listen'
gem 'spring'
gem 'capistrano', require: false
gem 'capistrano-rails', require: false
gem 'capistrano-passenger'
gem 'web-console', '>= 3.7.0' # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
end
group :development, :test do
gem 'rspec-rails'#, '~> 3.7.2'
gem 'rexml'
gem 'capybara'
gem 'rails-controller-testing'
gem 'byebug'
gem 'bullet'
gem 'factory_bot_rails'
end
group :test do
gem 'faker'
end