forked from voxe/voxe-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
123 lines (90 loc) · 2.12 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
source 'http://rubygems.org'
gem 'rails', '3.1.3'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# gem 'sqlite3'
group :development do
# http://documentcloud.github.com/jammit/
gem 'jammit'
gem 'heroku'
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
gem 'minitest'
end
group :development do
gem "haml-rails"
gem 'factory_girl_rails'
end
group :test do
gem 'rspec-rails'
gem 'database_cleaner'
gem 'cucumber-rails'
gem 'capybara-webkit'
gem 'factory_girl_rails'
end
# debugging tools
group :development, :test do
gem 'ruby-debug19'
end
gem 'jquery-rails'
# MongoDB adapter and an optimizer for MongoDB
# gem "mongoid", "~> 2.3"
# gem "bson_ext", "~> 1.4"
gem "mongoid"
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 'unicorn'
#gem 'thin'
# scaling
gem 'hirefireapp'
# Lists for Mongoid
gem 'acts_as_list_mongoid'
# API templates
gem 'rabl'
# templates
gem 'haml'
gem 'coffee-filter'
gem 'haml_coffee_assets'
gem 'eco'
gem 'haml-coffee'
gem 'mustache-trimmer', :git => 'https://github.com/josh/mustache-trimmer.git'
# 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 'dalli'
# templating markup
gem 'rdiscount'
# Gem to access to Facebook graph
gem 'koala'
# Additional features for text searching with mongoid
gem 'mongoid_fulltext'