-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
59 lines (47 loc) · 972 Bytes
/
Gemfile
File metadata and controls
59 lines (47 loc) · 972 Bytes
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
57
58
source 'https://rubygems.org'
gem 'rails', '5.2.2'
gem 'activestorage'
gem 'pg'
gem 'sass-rails'
gem 'uglifier', '>= 1.3.0'
gem 'turbolinks', '~> 5'
gem 'redis', '~> 3.0'
gem 'bcrypt', '~> 3.1.7'
gem 'hamlit'
gem 'closure_tree'
gem 'mailgun_rails'
gem 'dotenv-rails'
gem 'omniauth'
gem 'omniauth-twitter'
gem 'omniauth-github'
gem 'sidekiq'
gem 'sentry-raven'
gem 'nokogiri'
gem "htmlentities"
gem "truncate_html"
# css
gem "font-awesome-rails"
# js
gem 'webpacker'
gem 'dotenv-rails'
# Use Capistrano for deployment
gem 'capistrano'
gem 'capistrano-chruby'
gem 'capistrano-bundler'
gem 'capistrano-rails'
gem 'capistrano-passenger'
gem 'capistrano-sidekiq'
gem 'binding_of_caller'
gem 'better_errors'
gem 'faker'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'pry'
gem 'pry-byebug'
gem 'capybara', '~> 2.13'
gem 'selenium-webdriver'
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen'
end