Class: ImageOptim::OptionDefinition

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

Overview

Hold information about an option

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of OptionDefinition.



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

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.



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

def default
  @default
end

#descriptionObject (readonly)

Returns the value of attribute description.



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

def description
  @description
end

#nameObject (readonly)

Returns the value of attribute name.



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

def name
  @name
end

#procObject (readonly)

Returns the value of attribute proc.



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

def proc
  @proc
end

#typeObject (readonly)

Returns the value of attribute type.



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

def type
  @type
end