Gemfile 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. source 'https://rubygems.org'
  2. git_source(:github) { |repo| "https://github.com/#{repo}.git" }
  3. ruby '2.5.1'
  4. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  5. gem 'rails', '~> 5.2.0'
  6. # Use sqlite3 as the database for Active Record
  7. gem 'sqlite3'
  8. # Use Puma as the app server
  9. gem 'puma', '~> 3.11'
  10. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  11. # gem 'jbuilder', '~> 2.5'
  12. # Use Redis adapter to run Action Cable in production
  13. # gem 'redis', '~> 4.0'
  14. # Use ActiveModel has_secure_password
  15. # gem 'bcrypt', '~> 3.1.7'
  16. # Use ActiveStorage variant
  17. # gem 'mini_magick', '~> 4.8'
  18. # Use Capistrano for deployment
  19. # gem 'capistrano-rails', group: :development
  20. # Reduces boot times through caching; required in config/boot.rb
  21. gem 'bootsnap', '>= 1.1.0', require: false
  22. # Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
  23. # gem 'rack-cors'
  24. group :development, :test do
  25. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  26. gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
  27. # pry debug tool
  28. gem 'pry'
  29. gem 'pry-rails'
  30. gem 'pry-byebug'
  31. end
  32. group :development do
  33. gem 'listen', '>= 3.0.5', '< 3.2'
  34. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  35. gem 'spring'
  36. gem 'spring-watcher-listen', '~> 2.0.0'
  37. end
  38. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  39. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]