class ModuleModelItem
# ———————————————————————- A module for testing. Usually a source code file.
Public Instance Methods
data()
click to toggle source
Contents of the module. This will usually be source code.
# File doc/examples/test_suite/model.rb, line 250 def data property(:data) end
data=(val)
click to toggle source
# File doc/examples/test_suite/model.rb, line 254 def data=(val) set_property(:data, val) end
name()
click to toggle source
Name of the module in the filesystem.
# File doc/examples/test_suite/model.rb, line 261 def name property(:name) end
path()
click to toggle source
Path of the module in the filesystem.
# File doc/examples/test_suite/model.rb, line 268 def path property(:path) end