-
Notifications
You must be signed in to change notification settings - Fork 10
/
Gemfile
97 lines (80 loc) · 1.86 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
95
96
97
source 'http://rubygems.org'
gem 'rails', '3.1.10'
# our database of choice for key constrained, transaction enforced critical business data
gem 'mysql2'
gem 'foreigner'
# mongodb is perfect for logging and analytics which we care less about
gem "mongoid"
gem "bson_ext"
# Bundle the extra gems:
gem 'devise'
gem 'httparty'
gem 'GeoRuby'
gem 'spatial_adapter'
gem 'formtastic'
gem 'haml'
# pagination
gem 'kaminari'
# file uploads
gem 'paperclip'
gem 'fog'
# markdown
gem 'redcarpet'
gem 'countries'
# pdf-generation
gem 'doc_raptor'
# very useful to see what exceptions have been thrown - logs stcktrace too
gem 'exceptional'
# for managing cron job
gem 'whenever'
# cache in memcache - varnish isnt availiable on cedar apps
gem 'rack-cache'
gem 'dalli'
# search via sphinx deamon
gem 'thinking-sphinx', '2.0.10'
gem 'flying-sphinx', '0.6.1'
# social
gem 'koala'
gem 'twitter'
gem 'omniauth-twitter'
gem 'omniauth-facebook'
# jquery
gem 'jquery-rails'
# css framework
gem 'bourbon'
# my gems
gem 'hot_body', '0.1.1'
gem 'json_output_helper', '0.1.0'
gem 'dynamic_models'
# third party SAS solution for monitoring performance
group :production do
gem 'newrelic_rpm'
end
# useful in development
group :development do
# the debugger
#gem 'ruby-debug19', :require => 'ruby-debug'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.1.5'
gem 'coffee-rails', '~> 3.1.1'
gem 'uglifier', '>= 1.0.3'
end
group :test do
# Pretty printed test output
gem 'turn', :require => false
end
# test-only gems (accessable to development so their generators and rake tasks are available)
group :development, :test do
gem 'factory_girl_rails'
gem 'rspec-rails'
gem 'cucumber-rails'
gem 'capybara'
gem 'database_cleaner'
gem 'launchy'
# for devise generators
gem 'hpricot'
gem 'ruby_parser'
end