module Bookbinder::Commands

Public Instance Methods

product_infos(sections) click to toggle source
# File lib/bookbinder/commands/bind.rb, line 111
def product_infos(sections)
  temp = Hash.new
  sections.each do |section|
    temp[section.namespace] = section.product_info
  end
  temp
end