class Rf::SupportedVSC

Defined in:

config.cr

Constant Summary

FlagValues = [:Git, :Svn] of ::Symbol
FLAGVALUES = [:Git, :Svn] of ::Symbol

use verbatim to avoid macro escaping

Git = Rf::SupportedVSC.new(PermValues::Git.value.to_u32)
None = Rf::SupportedVSC.new(PermValues::None.value.to_u32)
Svn = Rf::SupportedVSC.new(PermValues::Svn.value.to_u32)

Constructors

Instance Method Summary

Constructor Detail

def self.new(ctx : YAML::ParseContext, node : YAML::Nodes::Node) #

def self.new(value : UInt32) #

Instance Method Detail

def !=(other : Rf::SupportedVSC) #

def &(other : Rf::SupportedVSC) #

def ==(other : Rf::SupportedVSC) #

def |(other : Rf::SupportedVSC) #

def from_string(string : String) : UInt32 #

def permits_git? #

def permits_something? #

def permits_svn? #

def to_s(io : IO) #
Description copied from class Reference

Appends a short String representation of this object which includes its class name and its object address.

class Person
  def initialize(@name : String, @age : Int32)
  end
end

Person.new("John", 32).to_s # => #<Person:0x10a199f20>

def to_yaml(yaml : YAML::Nodes::Builder) #

def value : UInt32 #