-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
51 lines (37 loc) · 833 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
46
47
48
49
50
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '3.2.15'
gem 'sass-rails'
gem 'twitter-bootstrap-rails'
gem 'simple_form'
gem 'client_side_validations'
gem 'client_side_validations-simple_form'
gem 'libv8', '~> 3.16.14.7'
gem 'kaminari', '~> 0.16.3'
gem 'jquery-rails'
gem 'unicorn'
gem 'mysql2'
gem 'pry-rails'
group :development, :test do
gem 'pry-byebug'
gem 'factory_girl_rails'
end
group :test do
gem 'capybara'
gem 'launchy'
gem 'shoulda-matchers', '~> 2.4.0'
gem 'rspec-rails'
end
group :development do
gem 'annotate', '~> 2.5.0'
gem 'capistrano', '~> 3.0.0'
gem 'capistrano-rails', '~> 1.1.0'
gem 'capistrano-bundler'
end
group :assets do
gem 'uglifier'
gem 'therubyracer'
gem 'turbo-sprockets-rails3'
end
# To use ActiveModel has_secure_password
gem 'bcrypt-ruby', '~> 3.0.0'