|
| 1 | +source 'https://rubygems.org' |
| 2 | +git_source(:github) { |repo| "https://github.com/#{repo}.git" } |
| 3 | + |
| 4 | +ruby '2.6.3' |
| 5 | + |
| 6 | +# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' |
| 7 | +gem 'rails', '~> 6.0.3', '>= 6.0.3.3' |
| 8 | +# Use Puma as the app server |
| 9 | +gem 'puma', '~> 4.1' |
| 10 | +# Use SCSS for stylesheets |
| 11 | +gem "sass-rails" |
| 12 | +# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker |
| 13 | +gem 'webpacker', '~> 4.0' |
| 14 | +# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder |
| 15 | +gem 'jbuilder', '~> 2.7' |
| 16 | +# Use Redis adapter to run Action Cable in production |
| 17 | +# gem 'redis', '~> 4.0' |
| 18 | +# Use Active Model has_secure_password |
| 19 | +# gem 'bcrypt', '~> 3.1.7' |
| 20 | + |
| 21 | +# Use Active Storage variant |
| 22 | +# gem 'image_processing', '~> 1.2' |
| 23 | + |
| 24 | +# Reduces boot times through caching; required in config/boot.rb |
| 25 | +gem 'bootsnap', '>= 1.4.2', require: false |
| 26 | + |
| 27 | +group :development, :test do |
| 28 | + # Call 'byebug' anywhere in the code to stop execution and get a debugger console |
| 29 | + gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] |
| 30 | +end |
| 31 | + |
| 32 | +group :development do |
| 33 | + # Access an interactive console on exception pages or by calling 'console' anywhere in the code. |
| 34 | + gem 'web-console', '>= 3.3.0' |
| 35 | + gem 'listen', '~> 3.2' |
| 36 | + # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring |
| 37 | + gem 'spring' |
| 38 | + gem 'spring-watcher-listen', '~> 2.0.0' |
| 39 | +end |
| 40 | + |
| 41 | +# Windows does not include zoneinfo files, so bundle the tzinfo-data gem |
| 42 | +gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] |
0 commit comments