-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathGemfile
62 lines (52 loc) · 1.2 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
source 'http://rubygems.org'
gem 'rails'
gem 'thin'
gem 'mongoid', :git => 'https://github.com/mongoid/mongoid.git'
gem 'bson_ext'
gem "mongoid_rails_migrations"
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
gem 'haml'
gem 'haml-rails'
gem 'jquery-rails'
gem 'sprockets'
gem 'devise'
gem 'cancan'
gem "omniauth"
gem 'oa-openid'
gem 'carrierwave'
gem 'carrierwave-mongoid'
gem 'fog'
gem 'mini_magick'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
gem 'rspec-rails', :group => [:test, :development]
group :test do
gem 'factory_girl_rails'
gem 'capybara'
gem 'spork'
gem 'guard-rspec'
gem 'guard-cucumber'
gem 'guard-spork'
gem 'rb-fsevent'
gem 'terminal-notifier-guard' # for Mac OS X 10.8
# gem 'growl' # for Mac OS X,
# gem 'notifu' # for Windows
# gem 'libnotify' # for Linux + Gnome
gem 'mongoid-rspec', :require => false
gem 'database_cleaner'
gem 'launchy'
gem 'cucumber'
gem 'cucumber-rails'
gem 'heroku'
gem 'turn', :require => false
end