class Module

Attributes

alias[RW]
description[RW]
enums[RW]
functions[RW]
name[RW]
summary[RW]
types[RW]
types_hash[RW]

Public Class Methods

new(params) click to toggle source
# File lib/code_generator/api_converter.rb, line 285
def initialize(params)
  @types_hash = {}
  params.each do |k, v|
    if self.respond_to?(k.to_sym)
      instance_variable_set("@#{k}".to_sym, v)
    end
  end
end