-
Notifications
You must be signed in to change notification settings - Fork 18
/
Gemfile
32 lines (27 loc) · 966 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
source 'https://rubygems.org'
gem 'rails', '3.2.11'
gem 'pg', '0.13.2'
gem 'jquery-rails', '2.0.2'
gem 'jbuilder', '0.4.0'
gem 'devise', '2.1.0'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '3.2.5'
gem 'bootstrap-sass', '2.0.3.1'
gem 'uglifier', '1.2.4'
gem 'handlebars_assets', '0.4.4'
end
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
group :test do
gem 'database_cleaner', '0.7.2'
gem 'capybara', '1.1.2'
gem 'shoulda', '3.0.1'
gem 'factory_girl', '3.0.0'
gem 'factory_girl_rails', '3.0.0'
end