-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
39 lines (31 loc) · 966 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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rails', '5.1.1'
# Database Adapter
gem 'pg', '0.20.0'
# Gems used by project
gem 'bootstrap-sass', '~> 3.3.7'
gem 'colorize', '~> 0.8.1'
gem 'devise', '~> 4.4.3'
gem 'figaro', '~> 1.1.1'
gem 'haml', '~> 5.0.1'
gem 'jquery-ui-rails', '~> 6.0.1'
gem 'kaminari', '~> 1.0.1'
gem 'naturalsort', '~> 1.2.0'
gem 'redcarpet', '~> 3.4.0'
# Rails Defaults
gem 'coffee-rails', '~> 4.2'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'jbuilder', '~> 2.5'
gem 'jquery-rails', '~> 4.3.1'
gem 'turbolinks', '~> 5'
# Testing
group :test do
gem 'minitest'
gem 'rails-controller-testing'
gem 'simplecov', '~> 0.14.1', require: false
end
group :development do
gem 'web-console', '~> 3.0'
end