-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathGemfile
40 lines (33 loc) · 800 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.4'
gem 'rails', '~> 5.2.2'
gem 'bootstrap', '~> 4.3.1'
gem 'filterrific' #, path: '../filterrific'
gem 'haml-rails'
gem 'jbuilder'
gem 'jquery-rails'
gem 'pg'
gem 'puma'
gem 'sassc-rails'
gem 'turbolinks'
gem 'will_paginate'
gem 'will_paginate-bootstrap4'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'uglifier'
end
gem 'coffee-rails' # specify in default group to avoid autoload warnings on tests
group :development, :test do
# supported database adapters
# gem 'pg' # already specified in default group higher up
gem 'mysql2'
end
group :development do
gem 'faker'
gem 'listen'
end
group :test do
gem 'wwtd'
end