forked from mongoid/echo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
39 lines (32 loc) · 834 Bytes
/
Gemfile
File metadata and controls
39 lines (32 loc) · 834 Bytes
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
source "https://rubygems.org"
gem 'rails', github: 'rails/rails'
gem 'arel', github: 'rails/arel'
gem "carrierwave"
gem "carrierwave-mongoid", require: "carrierwave/mongoid"
gem "decent_exposure"
gem "sidekiq"
gem "mongoid", github: "mongoid/mongoid"
gem "kiqstand", github: "mongoid/kiqstand"
#
# Front-End Infrastructure
#
gem 'backbone-on-rails'
gem 'jquery-rails'
gem 'rack-iframe-transport'
gem 'mimetype-fu', require: 'mimetype_fu'
gem 'haml-rails'
group :assets do
gem 'sprockets-rails', github: 'rails/sprockets-rails'
gem 'sass-rails', github: 'rails/sass-rails'
gem 'coffee-rails', github: 'rails/coffee-rails'
gem "uglifier"
end
group :development, :test do
gem "fabrication"
gem "guard-rspec"
gem "rspec-rails"
gem "spork", "~> 0.9.0.rc"
end
platforms :jruby do
gem "jruby-openssl"
end