-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
41 lines (38 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
source 'https://rubygems.org'
ruby '2.6.3'
gem 'bootsnap', require: false
gem 'jbuilder', '~> 2.0'
gem 'pg', '~> 1.2.3'
gem 'puma'
gem 'rails', '5.2.4.1'
gem 'redis'
gem 'wdm', '>= 0.1.0' if Gem.win_platform?
gem 'autoprefixer-rails'
gem 'font-awesome-sass', '~> 5.6.1'
gem 'sassc-rails'
gem 'simple_form'
gem 'uglifier'
gem 'webpacker'
gem 'dotenv-rails'
gem 'cloudinary'
gem 'algoliasearch-rails'
gem 'nokogiri'
gem 'sidekiq'
gem 'sidekiq-failures', '~> 1.0'
gem 'devise'
gem 'trix-rails', require: 'trix'
gem 'jquery-rails', '~> 4.4'
gem 'rack-cors'
gem 'ajax-datatables-rails'
gem 'acts-as-taggable-on', '~> 6.5'
gem 'tzinfo-data'
group :development do
gem 'web-console', '>= 3.3.0'
end
group :development, :test do
gem 'pry-byebug'
gem 'pry-rails'
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end