This repository was archived by the owner on Sep 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGemfile
More file actions
59 lines (46 loc) · 1.23 KB
/
Gemfile
File metadata and controls
59 lines (46 loc) · 1.23 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
source 'https://rubygems.org'
gem 'dotenv-rails'
gem "rails", "4.2.3"
gem "rails-api"
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
gem 'pg'
gem 'rspec-rails'
gem 'octokit', '~> 2.0'
gem 'acts-as-taggable-on', '~> 3.4'
gem 'capistrano', '< 3.0.0'
gem 'capistrano-unicorn'
gem 'capistrano-rbenv', '1.0.5'
gem 'nokogiri'
gem 'devise'
gem 'omniauth'
gem 'omniauth-twitter'
gem 'omniauth-github'
gem 'omniauth-bitbucket'
gem 'rest-client'
gem 'dalli'
gem 'will_paginate', '~> 3.0.6'
gem 'whenever', :require => false
gem "active_model_serializers", "~> 0.10.0.rc2"
gem "elasticsearch-rails"
gem "elasticsearch-model"
gem "rack-cors"
gem "open_uri_redirections"
group :test do
gem "vcr"
gem "webmock"
end
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
#gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'pry'
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.1.2'
# Use unicorn as the app server
gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]