API de comptabilité horaire.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Gemfile 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. source 'https://rubygems.org'
  2. git_source(:github) { |repo| "https://github.com/#{repo}.git" }
  3. ruby '3.0.1'
  4. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
  5. gem 'rails', '~> 6.1.3', '>= 6.1.3.1'
  6. # Use sqlite3 as the database for Active Record
  7. gem 'sqlite3', '~> 1.4'
  8. # Use Puma as the app server
  9. gem 'puma', '~> 5.0'
  10. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  11. # gem 'jbuilder', '~> 2.7'
  12. # Use Redis adapter to run Action Cable in production
  13. # gem 'redis', '~> 4.0'
  14. # Use Active Model has_secure_password
  15. # gem 'bcrypt', '~> 3.1.7'
  16. # Use Active Storage variant
  17. # gem 'image_processing', '~> 1.2'
  18. # Reduces boot times through caching; required in config/boot.rb
  19. gem 'bootsnap', '>= 1.4.4', require: false
  20. # Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
  21. gem 'rack-cors'
  22. group :development, :test do
  23. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  24. gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
  25. end
  26. group :development do
  27. gem 'listen', '~> 3.3'
  28. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  29. gem 'spring'
  30. # Generate erd (UML) schema from rails models
  31. gem 'rails-erd'
  32. end
  33. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  34. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
  35. gem "jwt", "~> 2.2"
  36. gem "bcrypt", "~> 3.1"
  37. gem "table_print", "~> 1.5"
  38. gem "faker", "~> 2.17"
  39. gem "activerecord-reset-pk-sequence", "~> 0.2.1"
  40. gem "jsonapi-serializer", "~> 2.2"