Gemfile 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. gem 'loofah', '>= 2.12.0'
  28. group :development, :test do
  29. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  30. gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
  31. end
  32. group :development do
  33. # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  34. gem 'web-console', '>= 4.1.0'
  35. # Display performance information such as SQL time and flame graphs for each request in your browser.
  36. # Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
  37. #gem 'rack-mini-profiler', '~> 2.0'
  38. gem 'listen', '~> 3.3'
  39. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  40. gem 'spring'
  41. end
  42. group :test do
  43. # Adds support for Capybara system testing and selenium driver
  44. gem 'capybara', '>= 3.26'
  45. gem 'selenium-webdriver'
  46. # Easy installation and use of web drivers to run system tests with browsers
  47. gem 'webdrivers'
  48. end
  49. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  50. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]