Method: FastlaneCore::ConfigItem#verify_block

Defined in:
fastlane_core/lib/fastlane_core/configuration/config_item.rb

#verify_blockObject

An optional block which is called when a new value is set.

Check value is valid. This could be type checks or if a folder/file exists
You have to raise a specific exception if something goes wrong. Use `user_error!` for the message: UI.user_error!("your message")


40
41
42
# File 'fastlane_core/lib/fastlane_core/configuration/config_item.rb', line 40

def verify_block
  @verify_block
end