HotFix for has_tag? bug.

This commit is contained in:
Peter Camilleri 2015-06-11 15:05:04 -04:00
parent 3f95931578
commit 4e682be217
2 changed files with 7 additions and 1 deletions

View file

@ -35,6 +35,12 @@ module XfOOrth
build_builds_string(name, symbol)
end
#Look up an tag of interest.
def has_tag?(tag)
@tags.include?(tag)
end
end
#A class used to specify the compile of VM words.

View file

@ -3,5 +3,5 @@
#* version.rb - The version string for fOOrth.
module XfOOrth
#The version string for fOOrth.
VERSION = "0.0.6"
VERSION = "0.0.7"
end