Top Level Namespace

Defined Under Namespace

Modules: Fastlane

Constant Summary collapse

DEFAULT_USERNAME =
"Fastlane Mattermost"
DEFAULT_ICON_URL =
"https://www.mattermost.org/wp-content/uploads/2016/04/icon.png"

Instance Method Summary collapse

Instance Method Details

#is_blank?(variable) ⇒ Boolean

Returns:

  • (Boolean)


7
8
9
10
11
# 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