-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (33 loc) · 919 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
source 'https://rubygems.org'
ruby '1.9.3'
gem 'rails', '3.2.14'
gem 'unicorn'
# Use PostgreSQL in all environments.
# To install Postgres locally, see http://postgresapp.com/ or similar
gem 'pg'
gem 'rails_admin'
gem 'rails_admin_export', '~> 0.0.1'
gem 'devise'
gem 'jquery-rails'
# Set up Heroku-friendly logging and assets
gem 'rails_12factor'
# Use the Twitter API
gem 'twitter'
# Get account lists from remote APIs
gem 'rest-client'
# Store JSON data on Amazon Web Services S3
gem 'aws-sdk', '~> 1.0'
gem 'boxer'
# Use DJ to queue data collection and publishing tasks
gem 'delayed_job_active_record'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
group :development do
gem 'annotate', "~> 2.5.0"
end