2
0

Gemfile 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. source 'https://rubygems.org'
  2. git_source(:github) { |repo| "https://github.com/#{repo}.git" }
  3. ruby '3.0.2'
  4. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
  5. gem 'rails', '~> 6.1.4'
  6. # Use postgresql as the database for Active Record
  7. gem 'pg', '~> 1.1'
  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. group :development, :test do
  27. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  28. gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
  29. end
  30. group :development do
  31. # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  32. gem 'web-console', '>= 4.1.0'
  33. # Display performance information such as SQL time and flame graphs for each request in your browser.
  34. # Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
  35. gem 'rack-mini-profiler', '~> 2.0'
  36. gem 'listen', '~> 3.3'
  37. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  38. gem 'spring'
  39. end
  40. group :test do
  41. # Adds support for Capybara system testing and selenium driver
  42. gem 'capybara', '>= 3.26'
  43. gem 'selenium-webdriver'
  44. # Easy installation and use of web drivers to run system tests with browsers
  45. gem 'webdrivers'
  46. end
  47. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  48. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
  49. # my add
  50. gem 'rails-i18n', '~> 6.0.0'
  51. gem 'devise'
  52. gem 'devise-i18n'
  53. gem 'omniauth'
  54. gem "pundit"
  55. gem 'kaminari'