-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
72 lines (53 loc) · 1.23 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
source 'https://rubygems.org'
gem 'rails', '5.0.1'
gem 'activerecord-session_store'
gem 'test-unit'
gem 'mysql2'
# Sunspot for full-text searching
gem 'sunspot_rails'
group :development do
gem 'sunspot_solr'
end
gem 'json'
gem 'yajl-ruby' # apparently necessary to parse JSON post data
gem 'responders'
# Asset Pipeline
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
gem 'uglifier'
gem 'coffee-rails'
gem 'bootstrap'
# Authentication
gem 'omniauth-identity'
gem 'omniauth-foursquare'
gem 'omniauth-twitter'
# gem 'omniauth-facebook'
# Image Uploads
gem 'carrierwave'
gem 'rmagick'
# API gem
gem 'rabl'
# OAuth Provider gem
gem 'doorkeeper'
gem 'oauth2'
# Put Twitter config variables into a separate file
gem 'dotenv-rails', :groups => [:development, :production]
# Social Media APIs
gem 'twitter'
gem 'quimby', :git => 'git://github.com/jwnichls/quimby.git'
# jQuery
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'rails-jquery-autocomplete'
gem 'jquery_mobile_rails'
# pagination
gem 'will_paginate'
# To use ActiveModel has_secure_password
gem 'bcrypt-ruby'
# Deploy with Capistrano
gem 'capistrano'
gem 'capistrano-rvm'
gem 'capistrano-bundler'
gem 'capistrano-rails'
# Cron tasks written in ruby
gem 'whenever', :require => false