class Samovar::ValueFlag
Attributes
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/samovar-2.3.0/lib/samovar/flags.rb, line 82 def initialize(text, prefix, value) super(text, prefix) @value = value *@alternatives, @prefix = @prefix.split('/') end
Calls superclass method
Samovar::Flag::new
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/samovar-2.3.0/lib/samovar/flags.rb, line 93 def boolean? @value.nil? end
Source
# File vendor/bundle/ruby/3.4.0/gems/samovar-2.3.0/lib/samovar/flags.rb, line 101 def parse(input) if prefix?(input.first) if @value return input.shift(2).last else input.shift return key end end end
Source
# File vendor/bundle/ruby/3.4.0/gems/samovar-2.3.0/lib/samovar/flags.rb, line 97 def prefix?(token) @prefix == token or @alternatives.include?(token) end