Merge pull request #178 from sebastianludwig/can-handle-directory-default-and-formatting

Minor improvements and a little cleanup
This commit is contained in:
Sebastian Celis 2016-12-14 17:13:25 -06:00 committed by GitHub
commit fdda09ca3c
8 changed files with 14 additions and 32 deletions

View file

@ -20,7 +20,7 @@ module Twine
end
def can_handle_directory?(path)
raise NotImplementedError.new("You must implement can_handle_directory? in your formatter class.")
Dir.entries(path).any? { |item| /^.+#{Regexp.escape(extension)}$/.match(item) }
end
def default_file_name

View file

@ -20,7 +20,7 @@ module Twine
end
def default_file_name
return 'strings.xml'
'strings.xml'
end
def determine_language_given_path(path)

View file

@ -14,7 +14,7 @@ module Twine
end
def default_file_name
return 'Localizable.strings'
'Localizable.strings'
end
def determine_language_given_path(path)

View file

@ -9,23 +9,17 @@ module Twine
'.po'
end
def can_handle_directory?(path)
Dir.entries(path).any? { |item| /^.+\.po$/.match(item) }
end
def default_file_name
return 'strings.po'
'strings.po'
end
def determine_language_given_path(path)
path_arr = path.split(File::SEPARATOR)
path_arr.each do |segment|
match = /(..)\.po$/.match(segment)
if match
return match[1]
end
end
path_arr = path.split(File::SEPARATOR)
path_arr.each do |segment|
match = /(..)\.po$/.match(segment)
return match[1] if match
end
return
end

View file

@ -9,12 +9,8 @@ module Twine
'.properties'
end
def can_handle_directory?(path)
return false
end
def default_file_name
return 'resources.properties'
'resources.properties'
end
def determine_language_given_path(path)

View file

@ -11,12 +11,8 @@ module Twine
'.po'
end
def can_handle_directory?(path)
Dir.entries(path).any? { |item| /^.+\.po$/.match(item) }
end
def default_file_name
return 'strings.po'
'strings.po'
end
def determine_language_given_path(path)

View file

@ -9,12 +9,8 @@ module Twine
'.json'
end
def can_handle_directory?(path)
Dir.entries(path).any? { |item| /^.+\.json$/.match(item) }
end
def default_file_name
return 'localize.json'
'localize.json'
end
def determine_language_given_path(path)

View file

@ -33,7 +33,7 @@ module Twine
end
def default_file_name
return 'strings.xml'
'strings.xml'
end
def determine_language_given_path(path)