fastlane/lib/fastlane/actions/actions_helper.rb in fastlane_hotfix-2.165.1 vs fastlane/lib/fastlane/actions/actions_helper.rb in fastlane_hotfix-2.187.0

- old
+ new

@@ -3,11 +3,11 @@ module SharedValues LANE_NAME = :LANE_NAME PLATFORM_NAME = :PLATFORM_NAME ENVIRONMENT = :ENVIRONMENT - # A slighly decorated hash that will store and fetch sensitive data + # A slightly decorated hash that will store and fetch sensitive data # but not display it while iterating keys and values class LaneContextValues < Hash def initialize @sensitive_context = {} end @@ -85,16 +85,16 @@ raise exc if exc end # returns a list of official integrations - # rubocop:disable Style/AccessorMethodName + # rubocop:disable Naming/AccessorMethodName def self.get_all_official_actions Dir[File.expand_path('*.rb', File.dirname(__FILE__))].collect do |file| File.basename(file).gsub('.rb', '').to_sym end end - # rubocop:enable Style/AccessorMethodName + # rubocop:enable Naming/AccessorMethodName # Returns the class ref to the action based on the action name # Returns nil if the action is not available def self.action_class_ref(action_name) class_name = action_name.to_s.fastlane_class + 'Action'