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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 PostgreSQL as the database for Active Record
  9. gem 'pg'
  10. # Use Puma as the app server
  11. gem 'puma', '~> 5.0'
  12. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  13. # gem 'jbuilder', '~> 2.7'
  14. # Use Redis adapter to run Action Cable in production
  15. # gem 'redis', '~> 4.0'
  16. # Use Active Model has_secure_password
  17. # gem 'bcrypt', '~> 3.1.7'
  18. # Use Active Storage variant
  19. # gem 'image_processing', '~> 1.2'
  20. # Reduces boot times through caching; required in config/boot.rb
  21. gem 'bootsnap', '>= 1.4.4', 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. end
  28. group :development do
  29. gem 'listen', '~> 3.3'
  30. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  31. gem 'spring'
  32. # Generate erd (UML) schema from rails models
  33. gem 'rails-erd'
  34. end
  35. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  36. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
  37. gem "jwt", "~> 2.2"
  38. gem "bcrypt", "~> 3.1"
  39. gem "table_print", "~> 1.5"
  40. gem "faker", "~> 2.17"
  41. gem "activerecord-reset-pk-sequence", "~> 0.2.1"
  42. gem "jsonapi-serializer", "~> 2.2"
  43. gem "dotenv-rails"
  44. gem "pry"