-
Notifications
You must be signed in to change notification settings - Fork 8
/
Gemfile
54 lines (44 loc) · 924 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
47
48
49
50
51
52
53
54
source 'https://rubygems.org'
gem 'rails', '3.2.6'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
group :development do
gem 'sqlite3'
gem 'typhoeus'
gem 'mysql2'
end
group :production do
gem 'execjs'
gem 'therubyracer'
gem 'pg'
gem 'fog'
gem 'unicorn'
end
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem "airbrake"
gem 'newrelic_rpm'
gem 'jquery-rails'
gem 'devise'
gem 'haml-rails'
gem 'state_machine'
gem 'cancan'
gem 'exifr'
gem 'omniauth'
gem 'omniauth-twitter'
gem 'omniauth-facebook'
gem 'resque'
gem 'resque-scheduler', :require => 'resque_scheduler'
gem 'twitter'
gem 'fb_graph'
gem 'ocr'
gem 'carrierwave'
gem 'mini_magick'
gem 'kaminari'
gem 'bootstrap-kaminari-views'
gem 'cancan'
gem 'simple_audit', git: 'https://github.com/jparbros/simple_audit.git'
gem 'lazy_high_charts'