-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
43 lines (40 loc) · 813 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
source 'https://rubygems.org'
ruby '2.3.0'
gem 'rails', '4.2.5'
gem 'mysql2'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'angularjs-rails'
gem 'slim-rails'
gem 'bootstrap-sass'
gem 'active_model_serializers'
gem 'acts_as_list'
gem 'jquery-ui-rails'
gem 'rolify'
gem 'bcrypt'
gem 'friendly_id'
group :production do
gem 'rails_12factor'
gem 'pg'
end
group :development, :test do
gem 'byebug'
gem 'web-console', '~> 2.0'
gem 'spring'
gem 'pry'
gem 'minitest'
gem 'rspec'
gem 'rspec-rails'
gem 'rspec-collection_matchers'
gem 'faker'
gem 'factory_girl_rails'
gem 'shoulda'
gem 'shoulda-callback-matchers'
gem 'shoulda-matchers'
gem 'better_errors'
end