-
Notifications
You must be signed in to change notification settings - Fork 30
/
Gemfile
41 lines (33 loc) · 866 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
source 'https://rubygems.org'
gem 'rails', '4.2.7'
gem "actionpack-action_caching"
gem 'mysql2', '~> 0.3.18'
gem 'memcache', '1.3.0'
gem 'memcache-client'
gem 'virtus', '~> 1.0.2'
gem 'httparty', '~> 0.10.0' # used for syncing Twitter avatars
gem 'sitemap_generator', '~> 4.0'
# interacting with Twitter
gem "twitter"
gem "oauth"
gem 'twitter-text' # parsing hashtags and usernames
gem "comma", "~> 3.0"
gem "gender_detector"
gem "will_paginate", "~> 3.0.pre2" # pagination
gem "rails_autolink" # auto_link function
#gem "system_timer", "~> 1.2.4"
gem "beanstalk-client"
gem "rmagick", "~> 2.0"
gem "paperclip", "2.7.0"
gem "aws-sdk"
gem 'sass-rails'
gem 'unicorn'
gem 'dalli'
# allows the app to be run with "bundle exec unicorn" in development
group :development do
gem 'awesome_print'
gem 'pry'
gem 'pry_debug'
gem 'unicorn'
# gem 'debugger'
end