Sha256: 0d2d431d945f39c265f3b01d68c273a01d31766e9b19b09c9cfc170de632e652
Contents?: true
Size: 255 Bytes
Versions: 31
Compression:
Stored size: 255 Bytes
Contents
# Small wrapper class to keep blueprint name and path. # Found this to be a little cleaner than using a hash. class Lono::Blueprint class Info attr_reader :name, :path def initialize(name, path) @name, @path = name, path end end end
Version data entries
31 entries across 31 versions & 1 rubygems