-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (37 loc) · 854 Bytes
/
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
source 'https://rubygems.org'
gem 'rails', '3.2.6'
gem 'mysql2'
gem 'thin'
gem 'pg'
# Slim rendering engine (alternative to ERB)
gem 'slim'
gem 'mobylette'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'compass-rails'
gem 'coffee-rails', '~> 3.2.1'
gem 'execjs'
gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
end
group :test, :development do
gem "rspec"
gem 'rspec-rails', "~> 2.0"
gem "factory_girl_rails", "< 2.0"
gem "factory_girl", "< 3.0"
gem "brakeman", "~> 1.7.0"
case RUBY_PLATFORM
when /darwin/
gem 'rb-fsevent'
when /linux/
gem 'rb-inotify', '~> 0.8.8'
end
end
gem 'jquery-rails'
# Use exception notifier
gem 'exception_notification', :require => 'exception_notifier'
# To use ActiveModel has_secure_password
gem 'bcrypt-ruby', '~> 3.0.0'
# Authentication
gem 'devise'
gem 'omniauth'