8 lines
227 B
Ruby
Raw Normal View History

2023-09-28 18:41:01 +03:00
# A sample Gemfile
source "https://rubygems.org"
gem 'fastlane'
2024-05-23 15:48:28 +03:00
gem "activesupport", "= 7.0.8"
2023-09-28 18:41:01 +03:00
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
eval_gemfile(plugins_path) if File.exist?(plugins_path)