-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
70 lines (55 loc) · 1.53 KB
/
Gemfile
File metadata and controls
70 lines (55 loc) · 1.53 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
source 'http://rubygems.org'
ruby '2.2.4'
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
gem 'pg', '~> 0.18.4'
gem 'puma', '~> 3.0'
gem 'sinatra', require: false
gem 'sidekiq'
gem 'react-rails'
gem 'redis'
gem 'sidetiq'
gem 'devise'
gem 'omniauth-facebook'
gem 'omniauth-twitter'
gem 'omniauth-google-oauth2'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
# gem 'therubyracer', platforms: :ruby
gem 'jquery-rails'
gem 'jquery-turbolinks'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
# gem 'bcrypt', '~> 3.1.7'
gem 'will_paginate', '~> 3.1.0'
gem 'elasticsearch-model'
gem 'elasticsearch-rails'
gem 'nokogiri', '~> 1.6'
gem 'dalli'
gem 'bootstrap-sass', '~> 3.3.6'
gem 'font-awesome-sass', '~> 4.6.2'
gem 'friendly_id', '~> 5.1.0'
gem 'meta-tags'
gem 'carrierwave', '>= 1.0.0.beta', '< 2.0'
gem 'mini_magick', '3.8.0'
gem 'fog', '1.36.0'
gem 'net-ssh'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'aws-sdk', '~> 2'
group :production do
gem 'rails_12factor', '0.0.2'
gem 'bonsai-elasticsearch-rails'
end
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
gem 'faker'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]