-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
94 lines (79 loc) · 1.9 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
source 'http://rubygems.org'
gem 'rails', '3.2.2'
gem 'pg'
# 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'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
gem 'compass-rails'
end
gem 'jquery-rails'
# Refinery CMS
gem 'refinerycms', '~> 2.0.1'
# Specify additional Refinery CMS Extensions here (all optional):
# gem 'refinerycms-i18n', :git => 'git://github.com/parndt/refinerycms-i18n.git'
# gem 'refinerycms-blog', '~> 2.0.1'
gem 'refinerycms-inquiries', '~> 2.0.0'
# gem 'refinerycms-page-images', '~> 2.0.0'
gem 'refinerycms-ckeditor'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
group :test do
# Pretty printed test output
gem 'turn', :require => false
end
gem 'haml'
gem 'dragonfly'
gem 'delayed_job_active_record'
gem 'devise', '= 2.0.4'
gem 'omniauth-facebook'
gem 'omniauth-twitter'
gem 'omniauth-google-apps'
gem 'omniauth-yahoo'
gem 'omniauth-github'
gem 'omniauth-openid'
gem 'state_machine', '= 1.1.2'
gem 'us_states_select'
gem 'countries'
gem 'simple_form'
gem 'rdiscount'
gem 'acts-as-taggable-on'
gem 'encrypted-cookies'
gem 'awesome_nested_set'
gem 'exception_notification'
gem 'sunspot_rails'
gem 'progress_bar'
gem 'gravatar_image_tag'
gem 'acts_as_followable'
gem 'friendly_id'
gem 'geocoder'
gem 'rails_autolink'
gem 'thin'
gem 'fog', '= 1.0.0'
gem 'jquery-rails'
gem 'rack-cache', :require => 'rack/cache'
gem 'rack', '1.4.0'
gem 'codemirror-rails'
gem 'easy_esi'
gem 'rubyzip'
gem 'rack-canonical-host'
gem 'rack-ssl', :require => 'rack/ssl'
gem 'hominid'
gem 'pusher'
gem 'diffy'
gem 'amoeba'
group :development do
gem 'cities'
gem 'sunspot_solr'
end
group :development_cached do
gem 'sunspot_solr'
end
group :production do
gem 'dalli'
gem 'newrelic_rpm'
end