Class: OptionDefinition

Inherits:
Object
  • Object
show all
Defined in:
lib/image_optim/option_definition.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, default, type, description, &proc) ⇒ OptionDefinition

Returns a new instance of OptionDefinition.



5
6
7
8
9
10
11
12
13
# File 'lib/image_optim/option_definition.rb', line 5

def initialize(name, default, type, description, &proc)
  if type.is_a?(String)
    type, description = default.class, type
  end

  @name = name.to_sym
  @description = description.to_s
  @default, @type, @proc = default, type, proc
end

Instance Attribute Details

#defaultObject (readonly)

Returns the value of attribute default.



3
4
5
# File 'lib/image_optim/option_definition.rb', line 3

def default
  @default
end

#descriptionObject (readonly)

Returns the value of attribute description.



3
4
5
# File 'lib/image_optim/option_definition.rb', line 3

def description
  @description
end

#nameObject (readonly)

Returns the value of attribute name.



3
4
5
# File 'lib/image_optim/option_definition.rb', line 3

def name
  @name
end

#procObject (readonly)

Returns the value of attribute proc.



3
4
5
# File 'lib/image_optim/option_definition.rb', line 3

def proc
  @proc
end

#typeObject (readonly)

Returns the value of attribute type.



3
4
5
# File 'lib/image_optim/option_definition.rb', line 3

def type
  @type
end