|
1 |
| -source 'https://rubygems.org' |
| 1 | +source "https://rubygems.org" |
2 | 2 | git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
3 | 3 |
|
4 |
| -ruby '2.7.0' |
| 4 | +ruby "2.7.0" |
5 | 5 |
|
6 |
| -# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' |
7 |
| -gem 'rails', '~> 6.0.2', '>= 6.0.2.2' |
8 |
| -# Use sqlite3 as the database for Active Record |
9 |
| -gem 'sqlite3', '~> 1.4' |
10 |
| -# Use Puma as the app server |
11 |
| -gem 'puma', '~> 4.1' |
12 |
| -# Use SCSS for stylesheets |
13 |
| -gem 'sass-rails', '>= 6' |
14 |
| -# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker |
15 |
| -gem 'webpacker', '~> 4.0' |
16 |
| -# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks |
17 |
| -gem 'turbolinks', '~> 5' |
18 |
| -# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder |
19 |
| -gem 'jbuilder', '~> 2.7' |
20 |
| -# Use Redis adapter to run Action Cable in production |
21 |
| -# gem 'redis', '~> 4.0' |
22 |
| -# Use Active Model has_secure_password |
23 |
| -# gem 'bcrypt', '~> 3.1.7' |
| 6 | +gem "rails", "~> 6.0.2", ">= 6.0.2.2" |
| 7 | +gem "sqlite3", "~> 1.4" |
| 8 | +gem "puma", "~> 4.1" |
| 9 | +gem "sass-rails", ">= 6" |
| 10 | +gem "webpacker", "~> 4.0" |
| 11 | +gem "turbolinks", "~> 5" |
| 12 | +gem "devise" |
| 13 | +gem "react-rails" |
| 14 | +gem "jsonapi-resources" |
24 | 15 |
|
25 |
| -# Use Active Storage variant |
26 |
| -# gem 'image_processing', '~> 1.2' |
27 |
| -gem 'devise' |
28 |
| -gem 'react-rails' |
29 |
| -gem 'jsonapi-resources' |
30 |
| - |
31 |
| -# Reduces boot times through caching; required in config/boot.rb |
32 |
| -gem 'bootsnap', '>= 1.4.2', require: false |
| 16 | +gem "bootsnap", ">= 1.4.2", require: false |
33 | 17 |
|
34 | 18 | group :development, :test do
|
35 |
| - # Call 'byebug' anywhere in the code to stop execution and get a debugger console |
36 |
| - gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] |
37 |
| - gem 'standard' |
| 19 | + gem "byebug", platforms: [:mri, :mingw, :x64_mingw] |
| 20 | + gem "standard" |
| 21 | + gem "factory_bot_rails" |
| 22 | + gem "faker" |
38 | 23 | end
|
39 | 24 |
|
40 | 25 | group :development do
|
41 |
| - # Access an interactive console on exception pages or by calling 'console' anywhere in the code. |
42 |
| - gem 'web-console', '>= 3.3.0' |
43 |
| - gem 'listen', '>= 3.0.5', '< 3.2' |
44 |
| - # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring |
45 |
| - gem 'spring' |
46 |
| - gem 'spring-watcher-listen', '~> 2.0.0' |
47 |
| -end |
48 |
| - |
49 |
| -group :test do |
50 |
| - # Adds support for Capybara system testing and selenium driver |
51 |
| - gem 'capybara', '>= 2.15' |
52 |
| - gem 'selenium-webdriver' |
53 |
| - # Easy installation and use of web drivers to run system tests with browsers |
54 |
| - gem 'webdrivers' |
| 26 | + gem "web-console", ">= 3.3.0" |
| 27 | + gem "listen", ">= 3.0.5", "< 3.2" |
| 28 | + gem "spring" |
| 29 | + gem "spring-watcher-listen", "~> 2.0.0" |
55 | 30 | end
|
56 |
| - |
57 |
| -# Windows does not include zoneinfo files, so bundle the tzinfo-data gem |
58 |
| -gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] |
0 commit comments