/
githubmirror
/
fastlane
Обзор
Документация
Войти
/
githubmirror
/
fastlane
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Gemfile
72 строки
3 KB
Connor Tumbleson
[gem] upgrade to sinatra 4 (#30134)
30 июл 2026, 02:54
Не верифицирован
30 июл 2026, 02:54
1176f16
Код
Авторство
О чём код?
source("https://rubygems.org") # Needed for the Fastlane::RUBOCOP_REQUIREMENT below require_relative "fastlane/lib/fastlane/version.rb" # Please keep all gems and their comments together without empty lines, so RuboCop can sort them alphabetically. # Allows fine-grained control of environment variables. gem "climate_control", "~> 0.2.0" # A tool for integrating Coveralls.io with Ruby apps. gem "coveralls", "~> 0.8.13" # Automates code review chores. gem "danger", "~> 9.0" # erb >= 5.0 (pulled in transitively by irb -> rdoc) requires Ruby >= 3.2, while fastlane supports Ruby >= 3.0. gem "erb", "< 5.0" # A fake filesystem. # Version 3.0.2 requires Ruby >=3.2, while fastlane uses a `required_ruby_version` of `>= 3.0`. gem "fakefs", ['>= 1.8', '< 3.0.2'] # Danger 9 pulls in faraday-http-cache; 2.6.0+ requires Ruby 3.2+. gem "faraday-http-cache", "< 2.6" # Version 2 requires Ruby >=3.2, while fastlane uses a `required_ruby_version` of `>= 3.0`. gem "git", "< 2" # for file uploads with Faraday gem "mime-types", ['>= 1.16', '< 4.0'] # standard library for OpenSSL has affected versions (unable to get certificate CRL) - ruby/openssl/issues/949 # We block affected versions here so a patched gem version will be used regardless of Ruby version. gem "openssl", ">= 3.1.2", "!= 3.2.0", "!= 3.2.1", "!= 3.3.0" # Fast XML parser and object marshaller. gem "ox", "~> 2.14" # Provides an interactive debugging environment for Ruby. gem "pry" # A plugin for pry that adds step-by-step debugging and stack navigation. gem "pry-byebug" # A pry rescue environment to automatically open pry when a test fails. gem "pry-rescue" # A plugin for pry that enables exploring the call stack. gem "pry-stack_explorer" # public_suffix >= 7.0 requires Ruby >= 3.2, while fastlane uses a `required_ruby_version` of `>= 3.0`. gem "public_suffix", "< 7.0" # A simple task automation tool. gem "rake" # A readline implementation in Ruby # See: https://github.com/deivid-rodriguez/byebug/issues/289#issuecomment-251383465 gem "rb-readline" # rdoc >= 8.0 (pulled in transitively by irb) requires Ruby >= 3.2, while fastlane supports Ruby >= 3.0. gem "rdoc", "< 8.0" # Behavior-driven testing tool for Ruby. gem "rspec", "~> 3.10" # A Ruby static code analyzer and formatter. gem "rubocop", Fastlane::RUBOCOP_REQUIREMENT # A collection of RuboCop cops for performance optimizations. gem "rubocop-performance" # A RuboCop extension focused on enforcing tools. gem "rubocop-require_tools" # Used to mock servers. gem "sinatra", "~> 4.2" # A library for stubbing and setting expectations on HTTP requests. gem "webmock", "~> 3.18" # Needed for running xcode-install related tests. gem "xcode-install", ">= 2.6.7" # Used for xcov's parameters generation: https://github.com/fastlane/fastlane/pull/12416 gem "xcov", "~> 1.9.0" # A documentation generation tool for Ruby. gem "yard", "~> 0.9.42" gemspec(path: ".") eval_gemfile("fastlane/Pluginfile")