lib/gym/options.rb in gym-0.7.3 vs lib/gym/options.rb in gym-0.8.0
- old
+ new
@@ -1,9 +1,8 @@
require "fastlane_core"
require "credentials_manager"
-# rubocop:disable Metrics/AbcSize
module Gym
class Options
def self.available_options
return @options if @options
@@ -61,10 +60,15 @@
description: "The name of the resulting ipa file",
optional: true,
verify_block: proc do |value|
value.gsub!(".ipa", "")
end),
+ FastlaneCore::ConfigItem.new(key: :buildlog_path,
+ short_option: "-l",
+ env_name: "GYM_BUILDLOG_PATH",
+ description: "The directory were to store the build log",
+ default_value: "~/Library/Logs/gym"),
FastlaneCore::ConfigItem.new(key: :sdk,
short_option: "-k",
env_name: "GYM_SDK",
description: "The SDK that should be used for building the application",
optional: true),
@@ -145,6 +149,5 @@
]
end
end
end
-# rubocop:enable Metrics/AbcSize