forked from MrPowers/code_quizzer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
44 lines (37 loc) · 668 Bytes
/
Gemfile
File metadata and controls
44 lines (37 loc) · 668 Bytes
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
source 'https://rubygems.org'
ruby "2.1.2"
gem 'rails', '4.1.8'
gem 'cancan'
gem 'devise'
gem 'faker'
gem 'haml-rails'
gem 'heroku'
gem 'jquery-rails'
gem 'pg'
gem 'thin'
gem 'redcarpet'
gem 'pygments.rb'
gem 'pry'
gem 'spring'
gem 'coffee-rails', '~> 4.0.0'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
group :production do
gem 'rails_12factor'
end
group :development do
gem 'awesome_print'
gem 'better_errors'
gem 'binding_of_caller'
gem 'quiet_assets'
end
group :test do
gem 'minitest'
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'rspec-rails'
gem 'shoulda-matchers'
end
group :development, :test do
gem 'byebug'
end