Sha256: c0899e64ef48e09e05941b7047d859193cddc54915fadd34cfde8f835f6eefa3
Contents?: true
Size: 376 Bytes
Versions: 13
Compression:
Stored size: 376 Bytes
Contents
module Nanoc module Int class SnapshotDef include Nanoc::Int::ContractsSupport attr_reader :name attr_reader :binary contract Symbol, C::KeywordArgs[binary: C::Optional[C::Bool]] => C::Any def initialize(name, binary:) @name = name @binary = binary end def binary? @binary end end end end
Version data entries
13 entries across 13 versions & 1 rubygems