Sha256: 186387ec7fb233ddc0fa84706c874283e8efb294bd970906933e405d58698049
Contents?: true
Size: 353 Bytes
Versions: 19
Compression:
Stored size: 353 Bytes
Contents
module Nanoc module Int class SnapshotDef include Nanoc::Int::ContractsSupport attr_reader :name contract Symbol, C::Bool => C::Any def initialize(name, is_final) @name = name @is_final = is_final end contract C::None => C::Bool def final? @is_final end end end end
Version data entries
19 entries across 19 versions & 1 rubygems