| 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 | # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder |
| 17 | gem 'jbuilder', '~> 2.7' | = | 17 | gem 'jbuilder', '~> 2.7' |
| 18 | # Use Redis adapter to run Action Cable in production | 18 | # Use Redis adapter to run Action Cable in production | |
| 19 | # gem 'redis', '~> 4.0' | 19 | # gem 'redis', '~> 4.0' | |
| 20 | # Use Active Model has_secure_password | 20 | # Use Active Model has_secure_password | |
| 21 | # gem 'bcrypt', '~> 3.1.7' | 21 | # gem 'bcrypt', '~> 3.1.7' | |
| 22 | 22 | |||
| 23 | # Use Active Storage variant | 23 | # Use Active Storage variant | |
| 24 | # gem 'image_processing', '~> 1.2' | 24 | # gem 'image_processing', '~> 1.2' | |
| 25 | +- | |||
| 26 | # Use Capistrano for deployment | |||
| 27 | # gem 'capistrano-rails', group: :development | |||
| 28 | = | 25 | ||
| 29 | # Reduces boot times through caching; required in config/boot.rb | 26 | # Reduces boot times through caching; required in config/boot.rb | |
| 30 | gem 'bootsnap', '>= 1.4.2', require: false | 27 | gem 'bootsnap', '>= 1.4.2', require: false | |
| 31 | 28 | |||
| 32 | group :development, :test do | 29 | group :development, :test do | |
| 33 | # Call 'byebug' anywhere in the code to stop execution and get a debugger console | 30 | # Call 'byebug' anywhere in the code to stop execution and get a debugger console | |
| 34 | gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | 31 | gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | |
| 35 | end | 32 | end | |
| 36 | 33 | |||
| 37 | group :development do | 34 | group :development do | |
| 38 | # Access an interactive console on exception pages or by calling 'console' anywhere in the code. | 35 | # Access an interactive console on exception pages or by calling 'console' anywhere in the code. | |
| 39 | gem 'web-console', '>= 3.3.0' | 36 | gem 'web-console', '>= 3.3.0' | |
| 40 | gem 'listen', '>= 3.0.5', '< 3.2' | 37 | gem 'listen', '>= 3.0.5', '< 3.2' | |
| 41 | # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | 38 | # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | |
| 42 | gem 'spring' | 39 | gem 'spring' | |
| 43 | gem 'spring-watcher-listen', '~> 2.0.0' | 40 | gem 'spring-watcher-listen', '~> 2.0.0' | |
| 44 | end | 41 | end | |
| 45 | 42 | |||
| 46 | group :test do | 43 | group :test do | |
| 47 | # Adds support for Capybara system testing and selenium driver | 44 | # Adds support for Capybara system testing and selenium driver | |
| 48 | gem 'capybara', '>= 2.15' | 45 | gem 'capybara', '>= 2.15' | |
| 49 | gem 'selenium-webdriver' | 46 | gem 'selenium-webdriver' | |
| 50 | # Easy installation and use of web drivers to run system tests with browsers | 47 | # Easy installation and use of web drivers to run system tests with browsers | |
| 51 | gem 'webdrivers' | 48 | gem 'webdrivers' | |
| 52 | end | 49 | end | |
| 53 | 50 | |||
| 54 | # Windows does not include zoneinfo files, so bundle the tzinfo-data gem | 51 | # Windows does not include zoneinfo files, so bundle the tzinfo-data gem | |
| 55 | gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] | 52 | gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] | |
| 56 | 53 | |||
| 57 | # Autoprefixer | 54 | # Autoprefixer | |
| 58 | gem "autoprefixer-rails" | 55 | gem "autoprefixer-rails" | |
| 59 | 56 | |||
| 60 | gem 'wdm', '>= 0.1.0' if Gem.win_platform? | 57 | gem 'wdm', '>= 0.1.0' if Gem.win_platform? |