class Cu::Config
- Cu::Config
- TOML::Config
- Reference
- Object
Defined in:
cu/config.cr:1cu/config.cr:53
Constant Summary
-
FILENAME =
".clickhouse-table.toml"
Constructors
Class Method Summary
Instance Method Summary
- #clickhouse_client
- #clickhouse_client=(v : String)
- #clickhouse_client=(v : Nil)
- #clickhouse_client?
- #client
- #clue : String
- #clue=(v : String) : String
-
#clue=(v : Nil)
nil
assignments are always ignored - #clue? : String | Nil
- #column
- #column=(v : String)
- #column=(v : Nil)
- #column?
- #db
- #db=(v : String)
- #db=(v : Nil)
- #db?
- #engine
- #engine=(v : String)
- #engine=(v : Nil)
- #engine?
- #force
- #force=(v : Bool)
- #force=(v : Nil)
- #force?
- #format
- #format=(v : String)
- #format=(v : Nil)
- #format?
- #host
- #host=(v : String)
- #host=(v : Nil)
- #host?
- #nop
- #nop=(v : Bool)
- #nop=(v : Nil)
- #nop?
- #path : String
- #path=(v : String) : String
-
#path=(v : Nil)
nil
assignments are always ignored - #path? : String | Nil
- #program
- #table
- #table=(v : String)
- #table=(v : Nil)
- #table?
-
#to_s(io : IO)
Appends a short String representation of this object which includes its class name and its object address.
- #verbose
- #verbose=(v : Bool)
- #verbose=(v : Nil)
- #verbose?
Constructor Detail
Class Method Detail
Instance Method Detail
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>