-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
59 lines (47 loc) · 1.03 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
source 'https://rubygems.org'
ruby '3.2.2'
# app server
gem 'rails', '~> 5.2.0'
# database
gem 'pg'
# webserver
gem 'puma'
# webserver
gem 'microformats', '~> 4.0.7'
# assets
gem 'autoprefixer-rails'
gem 'bootstrap'
gem 'jquery-rails'
gem 'sass-rails'
gem 'uglifier'
# For codestyle guide and linting
gem 'rubocop', require: false
gem 'rubocop-rspec'
# dev and testing
group :development, :test do
gem 'byebug', platform: :mri
gem 'factory_bot_rails'
gem 'guard-rspec'
gem 'nokogiri'
gem 'rails-controller-testing'
gem 'rspec-rails'
gem 'simplecov', require: false
gem 'spring-commands-rspec'
end
# dev
group :development do
gem 'listen', '~> 3.1.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console'
# For measuring page/code performance
gem 'rack-mini-profiler'
# For memory profiling
gem 'memory_profiler'
# For call-stack profiling flamegraphs
gem 'fast_stack'
gem 'flamegraph'
gem 'stackprof'
end
# windows dev
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]