mirror of
https://github.com/openMF/mobile-wallet.git
synced 2026-02-06 07:56:58 +00:00
13 lines
330 B
Ruby
13 lines
330 B
Ruby
source "https://rubygems.org"
|
|
|
|
begin
|
|
ruby File.read(".ruby-version").strip
|
|
rescue Errno::ENOENT
|
|
ruby "3.3.5" # Default version if .ruby-version doesn't exist
|
|
end
|
|
|
|
gem "fastlane"
|
|
gem "cocoapods"
|
|
|
|
plugins_path = File.join(File.dirname(__FILE__), "fastlane", "Pluginfile")
|
|
eval_gemfile(plugins_path) if File.exist?(plugins_path) |