class Samovar::BooleanFlag
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/samovar-2.3.0/lib/samovar/flags.rb, line 114 def initialize(text, prefix, value = nil) super(text, prefix) @value = value @negated = @prefix.sub(/^--/, '--no-') @alternatives = [@negated] 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 127 def parse(input) if input.first == @prefix input.shift return true elsif input.first == @negated input.shift return false end end
Source
# File vendor/bundle/ruby/3.4.0/gems/samovar-2.3.0/lib/samovar/flags.rb, line 123 def prefix?(token) @prefix == token or @negated == token end