module GitDS::FsModelItemClass

# ———————————————————————- Note: this is a class-method module. It should be extended in a class, not included.

Public Instance Methods

property(name, default=0, &block) click to toggle source

Define a property for this ModelItem class. The property will exist in the DB and on the filesystem.

# File lib/git-ds/model/fs_item.rb, line 36
def property(name, default=0, &block)
  define_fs_property(name, default, &block)
end