forked from jgilliam/nb-deprecated
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Gemfile
73 lines (68 loc) · 1.62 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
73
source 'http://rubygems.org'
gem 'psych'
gem 'rails', '3.1.4'
gem 'mysql2'
gem "recaptcha", :require => "recaptcha/rails"
gem 'capistrano'
gem 'nokogiri'
gem 'tidy-ext'
gem "ruby-openid"
gem "rack-openid"
gem 'kgio'
gem 'whenever', :require => false
gem 'geoip'
gem 'htmlentities'
gem 'auto_html'
gem 'delayed_job', '2.1.4'
gem 'rmagick','2.12.2'
gem 'daemons'
gem 'paperclip'
gem 'sunlight', '>= 0.9'
gem 'googlecharts'
gem 'oauth', '>= 0.3.1'
gem "twitter-auth", :git => "git://github.com/benders/twitter-auth.git", :branch => "rails_3", :require => "twitter_auth/engine"
gem 'hpricot', '>= 0.6'
gem 'will_paginate'
gem 'mogli', '>= 0.0.33'
gem 'facebooker2', '>= 0.0.16'
gem 'dalli'
gem 'sys-filesystem'
gem 'thinking-sphinx',
:git => 'git://github.com/freelancing-god/thinking-sphinx.git',
:require => 'thinking_sphinx'
gem 'mongrel', '>= 1.2.0.pre2'
gem 'jquery-rails'
gem 'ckeditor', '3.6.3'
gem 'kaminari'
gem 'will_filter'
gem 'tr8n', :git => "git://github.com/hinrik/tr8n.git"
gem 'workflow'
gem "airbrake"
gem 'jquery-rjs', :git => "git://github.com/aaronchi/jquery-rjs.git"
gem 'pry-rails'
gem 'awesome_print'
group :development do
gem 'rails-dev-boost'
gem 'rails_view_annotator'
end
group :production do
gem "newrelic_rpm"
end
group :assets do
gem 'uglifier'
gem 'jquery-ui-rails'
gem 'execjs'
gem 'therubyracer', :platforms => :ruby
# gem 'johnson'
end
gem 'coffee-rails', '~> 3.1.0'
gem 'coffee-filter'
gem 'sass-rails', '~> 3.1.0'
gem 'rinku', require: 'rails_rinku'
group :test do
gem 'watir-webdriver'
gem 'ruby-prof'
gem 'headless'
gem 'turn', '~> 0.8.3', :require => false
gem 'factory_girl_rails'
end