class Immutabler::DSL::Prop

Attributes

name[RW]
options[RW]
type[RW]

Public Class Methods

new(name, type, options) click to toggle source
# File lib/immutabler/dsl/prop.rb, line 6
def initialize(name, type, options)
  @name = name
  @type = type
  @options = options
end