class Object

Constants

DEFAULT_ICON_URL
DEFAULT_USERNAME

Public Instance Methods

is_blank?(variable) click to toggle source
# File lib/fastlane/plugin/mattermost/actions/mattermost_action.rb, line 7
def is_blank? variable
  str_variable = variable
  str_variable = variable.strip if variable.class.to_s == "String"
  str_variable.nil? || str_variable.empty?
end