-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (40 loc) · 869 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
source 'https://rubygems.org'
ruby '2.4.3'
gem 'devise'
gem 'figaro'
gem 'jbuilder', '~> 2.0'
gem 'pg', '~> 0.21'
gem 'puma'
gem 'rails', '5.1.5'
gem 'redis'
gem 'rails_admin', '~> 1.3'
gem 'postmark-rails'
gem 'meta-tags', '~> 2.9'
gem 'rails_admin_rollincode', '~> 1.0'
# For pictures upload
gem 'carrierwave', '~> 1.2.2'
gem 'cloudinary'
# For pagination :
gem 'kaminari'
# For translation
gem 'rails-i18n'
gem 'autoprefixer-rails'
gem 'bootstrap-sass', '~> 3.3'
# To be installed for Bootstrap 4
# gem 'bootstrap', '~> 4.0.0'
# gem 'jquery-rails'
gem 'font-awesome-sass', '~> 5.0'
gem 'sass-rails'
gem 'simple_form'
gem 'uglifier'
gem 'webpacker'
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