Method: Archimate::DataModel::LangString#==

Defined in:
lib/archimate/data_model/lang_string.rb

#==(other) ⇒ Object



77
78
79
80
81
82
83
# File 'lib/archimate/data_model/lang_string.rb', line 77

def ==(other)
  if other.is_a?(String)
    to_s == other
  else
    super
  end
end