Gemfile 510 B

12345678910111213141516
  1. source 'https://rubygems.org'
  2. # You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
  3. ruby ">= 2.6.10"
  4. # Exclude problematic versions of cocoapods and activesupport that causes build failures.
  5. gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1'
  6. gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0'
  7. gem 'xcodeproj', '< 1.26.0'
  8. gem 'concurrent-ruby', '< 1.3.4'
  9. # Ruby 3.4.0 has removed some libraries from the standard library.
  10. gem 'bigdecimal'
  11. gem 'logger'
  12. gem 'benchmark'
  13. gem 'mutex_m'