module ADIWG::Mdtranslator::Writers::MdJson::ScopeDescription

Public Class Methods

build(hScopeDesc) click to toggle source
# File lib/adiwg/mdtranslator/writers/mdJson/sections/mdJson_scopeDescription.rb, line 16
def self.build(hScopeDesc)

   Jbuilder.new do |json|
      json.dataset hScopeDesc[:dataset]
      json.attributes hScopeDesc[:attributes]
      json.features hScopeDesc[:features]
      json.other hScopeDesc[:other]
   end

end