diff --git a/lib/twine/formatters/abstract.rb b/lib/twine/formatters/abstract.rb index 64e721d..30f9ab7 100644 --- a/lib/twine/formatters/abstract.rb +++ b/lib/twine/formatters/abstract.rb @@ -3,8 +3,8 @@ require 'fileutils' module Twine module Formatters class Abstract - attr_accessor :strings - attr_accessor :options + attr_reader :strings + attr_reader :options def self.can_handle_directory?(path) return false @@ -90,7 +90,7 @@ module Twine current_section.rows << current_row if @options[:tags] && @options[:tags].length > 0 - current_row.tags = @options[:tags] + current_row.tags = @options[:tags] end @strings.strings_map[key] = current_row diff --git a/lib/twine/stringsfile.rb b/lib/twine/stringsfile.rb index 36373ff..863d8d0 100644 --- a/lib/twine/stringsfile.rb +++ b/lib/twine/stringsfile.rb @@ -42,11 +42,7 @@ module Twine elsif @tags.empty? return include_untagged else - tags.each do |tag| - if @tags.include? tag - return true - end - end + return !(tags & @tags).empty? end return false @@ -106,9 +102,7 @@ module Twine end def set_developer_language_code(code) - if @language_codes.include?(code) - @language_codes.delete(code) - end + @language_codes.delete(code) @language_codes.insert(0, code) end @@ -154,9 +148,8 @@ module Twine if match key = match[1].strip value = match[2].strip - if value[0,1] == '`' && value[-1,1] == '`' - value = value[1..-2] - end + + value = value[1..-2] if value[0] == '`' && value[-1] == '`' case key when 'comment'