This repository was archived by the owner on Jan 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
60 lines (51 loc) · 1.49 KB
/
Copy pathGemfile
File metadata and controls
60 lines (51 loc) · 1.49 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
source 'https://rubygems.org'
gem 'annotate'
gem 'bcrypt', '~> 3.1.12'
gem 'bootstrap-sass', '>= 3.4.1'
gem 'bootstrap-will_paginate', '~> 1.0.0'
gem 'carrierwave', '~> 1.3.1'
gem 'coffee-rails', '~> 4.2.2'
gem 'faker', '~> 1.9.3'
gem 'hamlit-rails'
gem 'jbuilder', '~> 2.7.0'
gem 'jquery-rails', '~> 4.3.1'
gem 'mini_magick', '~> 4.9.3'
gem 'puma', '~> 3.9.1'
gem 'rails', '~> 5.2.2'
gem 'sass-rails', '~> 5.0.6'
gem 'turbolinks', '~> 5.0.1'
gem 'uglifier', '~> 3.2.0'
gem 'will_paginate', '~> 3.1.6'
group :development, :test do
gem 'byebug', '~> 11.0.0', platform: :mri
gem 'rubocop', '~> 0.63.1'
# Workaround for cc-test-reporter with SimpleCov 0.18.
# Stop upgrading SimpleCov until the following issue will be resolved.
# https://github.com/codeclimate/test-reporter/issues/418
gem 'simplecov', '~> 0.10', '< 0.18'
gem 'sqlite3', '~> 1.3.13'
gem 'xray-rails'
end
group :development do
gem 'bullet'
gem 'listen', '~> 3.1.5'
gem 'spring', '~> 2.0.2'
gem 'spring-watcher-listen', '~> 2.0.1'
gem 'web-console', '~> 3.7.0'
gem 'flamegraph'
gem 'rack-mini-profiler'
gem 'stackprof'
end
group :test do
gem 'guard', '~> 2.15.0'
gem 'guard-minitest', '~> 2.4.4'
gem 'minitest', '~> 5.11.3'
gem 'minitest-reporters', '~> 1.1.14'
gem 'rails-controller-testing', '~> 1.0.2'
end
group :production do
gem 'fog', '~> 1.42'
gem 'pg', '~> 1.1.4'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]