class Geode::Dependency
- Geode::Dependency
- Reference
- Object
Included Modules
- YAML::Serializable
Defined in:
shard.crConstructors
Instance Method Summary
- #bitbucket : String
- #bitbucket=(bitbucket : String)
- #bitbucket? : String | Nil
- #fossil : String
- #fossil=(fossil : String)
- #fossil? : String | Nil
- #git : String
- #git=(git : String)
- #git? : String | Nil
- #github : String
- #github=(github : String)
- #github? : String | Nil
- #gitlab : String
- #gitlab=(gitlab : String)
- #gitlab? : String | Nil
- #hg : String
- #hg=(hg : String)
- #hg? : String | Nil
- #name : String
- #name=(name : String)
- #name? : String | Nil
- #path : String
- #path=(path : String)
- #path? : String | Nil
-
#to_s(io : IO) : Nil
Appends a short String representation of this object which includes its class name and its object address.
- #version : String
- #version=(version : String)
- #version? : String | Nil
Constructor Detail
Instance Method Detail
def to_s(io : IO) : Nil
#
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>