-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
37 lines (33 loc) · 723 Bytes
/
Gemfile
File metadata and controls
37 lines (33 loc) · 723 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
source 'https://rubygems.org'
gem 'rails', '4.2'
gem 'sqlite3'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
gem 'devise'
gem 'haml-rails', '~> 0.8'
gem 'draper', '~> 1.3.1'
gem 'decent_decoration'
gem 'decent_exposure'
gem 'netguru_theme'
gem 'annotate', '~> 2.6.5'
gem 'will_paginate', '~> 3.1.0'
group :development do
gem 'rails-erd'
gem 'better_errors'
gem 'bullet'
gem 'pry-rails'
gem 'binding_of_caller'
gem 'spring'
gem 'spring-commands-rspec'
end
group :development, :test do
gem 'rspec-rails', '~> 3.0'
gem 'capybara'
gem 'faker', '~> 1.4.3'
gem "factory_girl_rails", "~> 4.0"
gem 'simplecov'
end
group :test do
gem 'shoulda-matchers', require: false
end