-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
46 lines (36 loc) · 892 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
source 'https://rubygems.org'
gem 'rails', '3.2.3'
gem 'bootstrap-sass', '~>2.0.0'
gem 'bcrypt-ruby', '3.0.1'
gem 'faker', '1.0.1'
gem 'will_paginate', '3.0.3'
gem 'bootstrap-will_paginate', '0.0.6'
group :development, :test do
gem 'sqlite3', '1.3.5'
gem 'rspec-rails'
gem 'guard-rspec'
gem 'capistrano-rails', '~>1.1.1'
gem 'cucumber-rails', '1.2.1', require:false
gem 'database_cleaner', '0.7.0'
gem 'minitest'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails', '3.2.2'
gem 'uglifier', '1.2.3'
end
gem 'jquery-rails'
group :test do
gem 'capybara', '1.1.2'
gem 'rb-inotify', '~> 0.9'
gem 'libnotify', '0.5.9'
gem 'guard-spork', '0.3.2'
gem 'spork'
gem 'factory_girl_rails', '1.4.0'
end
group :production, :staging do
gem 'pg'
gem 'mysql2'
end