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.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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.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. gem 'pry'
  28. # gem 'pry-rails'
  29. end
  30. group :development do
  31. gem 'listen', '~> 3.3'
  32. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  33. gem 'spring'
  34. # Generate erd (UML) schema from rails models
  35. gem 'rails-erd'
  36. end
  37. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  38. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
  39. gem 'jwt', '~> 2.2'
  40. gem 'bcrypt', '~> 3.1'
  41. gem 'table_print', '~> 1.5'
  42. gem 'faker', '~> 2.17'
  43. gem 'activerecord-reset-pk-sequence', '~> 0.2.1'
  44. gem 'jsonapi-serializer', '~> 2.2'
  45. gem 'dotenv-rails'