Method: Ruber::PluginSpecificationReader#process_pdf_intro

Defined in:
lib/ruber/plugin_specification_reader.rb

#process_pdf_intro(hash, component = false) ⇒ Object



113
114
115
116
117
118
119
120
121
122
# File 'lib/ruber/plugin_specification_reader.rb', line 113

def process_pdf_intro hash, component = false
  @plugin_info.name = read_name hash, component
  @plugin_info.about = read_about hash
  @plugin_info.version = read_version hash
  @plugin_info.required = read_required hash
  @plugin_info.features = read_features hash
  @plugin_info.deps = read_deps hash
  @plugin_info.runtime_deps = read_runtime_deps hash
  @plugin_info
end