Module: MrMurano::ProductOnePlatformRpcShim
- Included in:
- Product1PDevice, ProductResources
- Defined in:
- lib/MrMurano/Product.rb
Instance Method Summary collapse
-
#model_rid ⇒ Object
The model RID for this product.
Instance Method Details
#model_rid ⇒ Object
The model RID for this product.
34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/MrMurano/Product.rb', line 34 def model_rid return @model_rid unless @model_rid.nil? prd = Product.new data = prd.info if data.kind_of?(Hash) and data.has_key?(:modelrid) then @model_rid = data[:modelrid] else raise "Bad info; #{data}" end @model_rid end |