Switched order of evaluation. Because I could not generate language file from strings.txt without 'tags' option.

This commit is contained in:
ISHITOYA Kentaro 2012-03-01 22:31:05 +09:00 committed by Sebastian Celis
parent f5f7215d96
commit 0139f8d5e5

View file

@ -23,12 +23,12 @@ module Twine
end
def matches_tags?(tags)
if @tags == nil || @tags.length == 0
# This row has no tags. Never match
return false
elsif tags == nil || tags.length == 0
if tags == nil || tags.length == 0
# The user did not specify any tags. Everything passes.
return true
elsif @tags == nil || @tags.length == 0
# This row has no tags. Never match
return false
else
tags.each do |tag|
if @tags.include? tag