-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
47 lines (37 loc) · 992 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
source 'https://rubygems.org'
ruby '2.6.0'
# Rails stuff
gem 'rails', '~> 5.2.2'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 3.11'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'bootsnap', '>= 1.1.0', require: false
# JS stuff
gem 'coffee-rails', '~> 4.2'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
# WYSIWYG
gem 'ckeditor', '~> 4.1', '>= 4.1.6'
# Third part file upload
gem 'carrierwave', '~> 1.3', '>= 1.3.1'
gem 'fog-aws', '~> 0.7.6'
# Auth((orization)|(entication))
gem 'devise', '~> 4.2'
gem 'rolify', '~> 5.2'
group :development, :test do
gem 'pry', '~> 0.12.2'
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring', '~> 2.0.2'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
gem 'rspec-rails', '~> 3.8'
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver', '~> 3.141.0'
gem 'chromedriver-helper', '~> 2.1.0'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]