Move the row_matches_tag method to stringsfile.rb.

This commit is contained in:
Sebastian Celis 2012-02-09 09:45:25 -06:00
parent 0918b65308
commit 6612d01e48
4 changed files with 19 additions and 18 deletions

View file

@ -34,22 +34,6 @@ module Twine
end
end
def row_matches_tags?(row, tags)
if tags == nil || tags.length == 0
return true
end
if tags != nil && row.tags != nil
tags.each do |tag|
if row.tags.include? tag
return true
end
end
end
return false
end
def translated_string_for_row_and_lang(row, lang, default_lang)
row.translations[lang] || row.translations[default_lang]
end

View file

@ -76,7 +76,7 @@ module Twine
strings.sections.each do |section|
printed_section = false
section.rows.each do |row|
if row_matches_tags?(row, tags)
if row.matches_tags?(tags)
unless printed_section
f.puts ''
if section.name && section.name.length > 0

View file

@ -51,7 +51,7 @@ module Twine
strings.sections.each do |section|
printed_section = false
section.rows.each do |row|
if row_matches_tags?(row, tags)
if row.matches_tag?(tags)
unless printed_section
f.puts ''
if section.name && section.name.length > 0

View file

@ -21,6 +21,23 @@ module Twine
@tags = nil
@translations = {}
end
def matches_tags?(tags)
# The user did not specify any tags. Everything passes.
if tags == nil || tags.length == 0
return true
end
if tags != nil && @tags != nil
tags.each do |tag|
if @tags.include? tag
return true
end
end
end
return false
end
end
class StringsFile