-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathGemfile
139 lines (105 loc) · 2.5 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
source 'http://rubygems.org'
ruby '2.2.2'
gem 'rails', '3.2.22'
group :development do
# http://documentcloud.github.com/jammit/
gem 'jammit'
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'pry-rails'
end
# 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'
gem 'uglifier', '>= 1.0.3'
gem 'rails-backbone'
gem 'compass-rails'
gem 'bootstrap-sass'
gem 'autoprefixer-rails'
gem 'bootstrap-datepicker-rails'
gem 'select2-rails'
gem 'underscore-rails'
end
group :test do
# Pretty printed test output
gem 'turn', :require => false
gem 'minitest'
gem 'rspec-rails'
gem 'database_cleaner'
gem 'cucumber-rails'
gem 'capybara-webkit'
gem 'factory_girl_rails'
end
# debugging tools
group :development, :test do
gem 'rake'
end
gem 'jquery-rails', '~>2.1.4'
gem 'simple_form'
# MongoDB adapter and an optimizer for MongoDB
gem 'mongoid'
gem 'mongoid_slug'
gem 'bson_ext'
# Upload system
gem 'carrierwave'
# S3 gem for carrierwave
gem 'fog'
# Send assets to S3
gem 'asset_sync'
# Mongoid for carrierwave
gem 'carrierwave-mongoid', :require => 'carrierwave/mongoid'
# Rmagick for carrierwave
gem 'mini_magick'
# User authentication
gem 'devise'
# User authorization
gem 'cancan'
# Webserver
# http://michaelvanrooijen.com/articles/2011/06/01-more-concurrency-on-a-single-heroku-dyno-with-the-new-celadon-cedar-stack/
gem 'puma'
#gem 'thin'
# scaling
gem "hirefire-resource"
# Lists for Mongoid
gem 'acts_as_list_mongoid'
# API templates
gem 'rabl'
# templates
gem 'haml-rails'
gem 'haml_coffee_assets'
gem 'eco'
gem 'mustache-trimmer-rails'
gem 'simple_form'
gem 'select2-rails'
# http://voxe.airbrake.io/
gem "airbrake"
# URL parser to checkout embed code
gem 'ruby-oembed'
# configuration for different env.
gem "settingslogic"
# New relic to track our performances
gem 'newrelic_rpm'
# Caching with Memcache
gem 'memcachier'
gem 'dalli'
# templating markup
gem 'rdiscount'
# Gem to access to Facebook graph
gem 'koala'
# Additional features for text searching with mongoid
gem 'mongoid_fulltext'
# Internationalization according to http accept-language
gem 'http_accept_language'
# Gem to get rails variables in js
gem 'gon'
# Add a type for geospcial stuff on mongoid
gem 'mongoid_spacial'
# Geocode ip addresses, etc...
gem 'geocoder', require: false
# Pagination
gem 'will_paginate_mongoid'
# It needs it, I don't why and I'm tired...
gem 'test-unit'