mirror of
https://github.com/bitwarden/android.git
synced 2025-12-05 18:46:49 -06:00
22 lines
512 B
Ruby
22 lines
512 B
Ruby
source "https://rubygems.org"
|
|
|
|
ruby File.read(".ruby-version").strip
|
|
|
|
gem 'fastlane'
|
|
gem 'time'
|
|
|
|
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
|
|
eval_gemfile(plugins_path) if File.exist?(plugins_path)
|
|
|
|
# Since ruby 3.4.0 these are not included in the standard library
|
|
gem 'abbrev'
|
|
gem 'logger'
|
|
gem 'mutex_m'
|
|
gem 'csv'
|
|
|
|
# Since ruby 3.4.1 these are not included in the standard library
|
|
gem 'nkf'
|
|
|
|
# Starting with Ruby 3.5.0, these are not included in the standard library
|
|
gem 'ostruct'
|