class Gargor::Parameter

Attributes

file[RW]
json_file[RW]
json_path[RW]
mutation[RW]
name[RW]
path[RW]
value[RW]

Public Class Methods

new(name) click to toggle source
# File lib/gargor/parameter.rb, line 8
def initialize name
  @name = name
end

Public Instance Methods

==(other) click to toggle source
# File lib/gargor/parameter.rb, line 16
def ==(other)
  name == other.name and
    file == other.file and
    path == other.path and
    value == other.value
end
Also aliased as: eql
eql(other)
Alias for: ==
to_s() click to toggle source
# File lib/gargor/parameter.rb, line 12
def to_s
  @value.to_s
end