class Term

Attributes

keyword[RW]
values[RW]

Public Class Methods

new(keyword) click to toggle source
# File lib/localio/term.rb, line 5
def initialize(keyword)
  @keyword = keyword
  @values = Hash.new
end

Public Instance Methods

is_comment?() click to toggle source
# File lib/localio/term.rb, line 10
def is_comment?
  @keyword.downcase == '[comment]'
end