Gemfile 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. source 'https://rubygems.org'
  2. git_source(:github) { |repo| "https://github.com/#{repo}.git" }
  3. ruby '2.7.4'
  4. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
  5. gem 'rails', '~> 6.1.4', '>= 6.1.4.1'
  6. # Use mysql as the database for Active Record
  7. gem 'mysql2', '~> 0.5'
  8. # Use Puma as the app server
  9. gem 'puma', '~> 5.0'
  10. # Use SCSS for stylesheets
  11. gem 'sass-rails', '>= 6'
  12. # Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
  13. gem 'webpacker', '~> 5.0'
  14. # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
  15. gem 'turbolinks', '~> 5'
  16. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  17. gem 'jbuilder', '~> 2.7'
  18. # Use Redis adapter to run Action Cable in production
  19. # gem 'redis', '~> 4.0'
  20. # Use Active Model has_secure_password
  21. # gem 'bcrypt', '~> 3.1.7'
  22. # Use Active Storage variant
  23. # gem 'image_processing', '~> 1.2'
  24. # Reduces boot times through caching; required in config/boot.rb
  25. gem 'bootsnap', '>= 1.4.4', require: false
  26. gem 'turbolinks_render'
  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. group :development do
  32. # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  33. gem 'web-console', '>= 4.1.0'
  34. # Display performance information such as SQL time and flame graphs for each request in your browser.
  35. # Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
  36. #gem 'rack-mini-profiler', '~> 2.0'
  37. gem 'listen', '~> 3.3'
  38. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  39. gem 'spring'
  40. end
  41. group :test do
  42. # Adds support for Capybara system testing and selenium driver
  43. gem 'capybara', '>= 3.26'
  44. gem 'selenium-webdriver'
  45. # Easy installation and use of web drivers to run system tests with browsers
  46. gem 'webdrivers'
  47. end
  48. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  49. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]