class UserPlane::Command
Public Instance Methods
perform(options={})
click to toggle source
Calls superclass method
# File lib/user_plane/command.rb, line 11 def perform(options={}) if perform_validations(options) super() true else false end end
perform!(options={})
click to toggle source
# File lib/user_plane/command.rb, line 20 def perform!(options={}) raise Imperator::InvalidCommandError.new("Command was invalid") unless perform(options) end