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