-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
104 lines (97 loc) · 2.8 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.4'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
gem 'rails', '~> 6.1.4'
# Use Puma as the app server
gem 'puma', '~> 5.0'
# database
gem 'pg', '1.2.3'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.4', require: false
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', "~> 11.1.3", platforms: [:mri, :mingw, :x64_mingw]
gem 'pry', "~> 0.14.1"
gem 'rspec', "~> 3.10.0"
gem 'rspec-rails', "~> 5.0.1"
gem "timecop", "~> 0.9.4"
gem "db-query-matchers", "~> 0.10.0"
gem 'simplecov', "~> 0.21.2"
gem 'simplecov-shields-badge', require: false
end
group :development do
gem 'listen', '~> 3.3'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', '~> 2.1.1'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# Using rake 13.0.6
# Using concurrent-ruby 1.1.9
# Using i18n 1.8.10
# Using minitest 5.14.4
# Using tzinfo 2.0.4
# Using zeitwerk 2.4.2
# Using activesupport 6.1.4
# Using builder 3.2.4
# Using erubi 1.10.0
# Using mini_portile2 2.6.1
# Using racc 1.5.2
# Using nokogiri 1.12.3 (x86_64-darwin)
# Using rails-dom-testing 2.0.3
# Using crass 1.0.6
# Using loofah 2.12.0
# Using rails-html-sanitizer 1.3.0
# Using actionview 6.1.4
# Using rack 2.2.3
# Using rack-test 1.1.0
# Using actionpack 6.1.4
# Using nio4r 2.5.8
# Using websocket-extensions 0.1.5
# Using websocket-driver 0.7.5
# Using actioncable 6.1.4
# Using globalid 0.5.2
# Using activejob 6.1.4
# Using activemodel 6.1.4
# Using activerecord 6.1.4
# Using marcel 1.0.1
# Using mini_mime 1.1.0
# Using activestorage 6.1.4
# Using mail 2.7.1
# Using actionmailbox 6.1.4
# Using actionmailer 6.1.4
# Using actiontext 6.1.4
# Using msgpack 1.4.2
# Using bootsnap 1.7.7
# Using bundler 2.1.4
# Using byebug 11.1.3
# Using coderay 1.1.3
# Using rspec-support 3.10.2
# Using rspec-core 3.10.1
# Using diff-lcs 1.4.4
# Using rspec-expectations 3.10.1
# Using rspec-mocks 3.10.2
# Using rspec 3.10.0
# Using db-query-matchers 0.10.0
# Using docile 1.4.0
# Using ffi 1.15.3
# Using rb-fsevent 0.11.0
# Using rb-inotify 0.10.1
# Using listen 3.6.0
# Using method_source 1.0.0
# Using pg 1.2.3
# Using pry 0.14.1
# Using puma 5.4.0
# Using thor 1.1.0
# Using railties 6.1.4
# Using sprockets 4.0.2
# Using sprockets-rails 3.2.2
# Using rails 6.1.4
# Using rspec-rails 5.0.1
# Using simplecov-html 0.12.3
# Using simplecov_json_formatter 0.1.3
# Using simplecov 0.21.2
# Using simplecov-shields-badge 0.1.0
# Using spring 2.1.1
# Using timecop 0.9.4