class Pumog::ModuleInformation

Attributes

author[RW]
email[RW]
name[RW]

Public Class Methods

new(name= '', author = '', email= '') click to toggle source
# File lib/pumog/module_information.rb, line 5
def initialize(name= '', author = '', email= '')
  @name = name
  @author = author
  @email = email
end