class Samovar::InvalidInputError
Attributes
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/samovar-2.3.0/lib/samovar/error.rb, line 11 def initialize(command, input) @command = command @input = input super "Could not parse token #{input.first.inspect}" end
Calls superclass method
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/samovar-2.3.0/lib/samovar/error.rb, line 22 def help? self.token == "--help" end
Source
# File vendor/bundle/ruby/3.4.0/gems/samovar-2.3.0/lib/samovar/error.rb, line 18 def token @input.first end