class RESTfulLoaders::PropertyDefinitionsLoader
Public Class Methods
new(project)
click to toggle source
# File lib/mingle_macro_development_toolkit/loaders/restful_loaders/property_definitions_loader.rb, line 6 def initialize(project) @project = project end
Public Instance Methods
load()
click to toggle source
# File lib/mingle_macro_development_toolkit/loaders/restful_loaders/property_definitions_loader.rb, line 10 def load extract('property_definitions', @project).collect { |pd| PropertyDefinitionLoader.new(@project, pd) } end