Merge pull request #120 from sebastianludwig/redirectable_output
Redirectable output
This commit is contained in:
commit
0f3a4ad269
4 changed files with 27 additions and 5 deletions
19
lib/twine.rb
19
lib/twine.rb
|
@ -1,4 +1,23 @@
|
|||
module Twine
|
||||
@@stdout = STDOUT
|
||||
@@stderr = STDERR
|
||||
|
||||
def self.stdout
|
||||
@@stdout
|
||||
end
|
||||
|
||||
def self.stdout=(out)
|
||||
@@stdout = out
|
||||
end
|
||||
|
||||
def self.stderr
|
||||
@@stderr
|
||||
end
|
||||
|
||||
def self.stderr=(err)
|
||||
@@stderr = err
|
||||
end
|
||||
|
||||
class Error < StandardError
|
||||
end
|
||||
|
||||
|
|
|
@ -79,7 +79,7 @@ module Twine
|
|||
row.translations[lang] = value
|
||||
end
|
||||
elsif @options[:consume_all]
|
||||
STDERR.puts "Adding new string '#{key}' to strings data file."
|
||||
Twine::stderr.puts "Adding new string '#{key}' to strings data file."
|
||||
current_section = @strings.sections.find { |s| s.name == 'Uncategorized' }
|
||||
unless current_section
|
||||
current_section = StringsSection.new('Uncategorized')
|
||||
|
@ -95,7 +95,7 @@ module Twine
|
|||
@strings.strings_map[key] = current_row
|
||||
@strings.strings_map[key].translations[lang] = value
|
||||
else
|
||||
STDERR.puts "Warning: '#{key}' not found in strings data file."
|
||||
Twine::stderr.puts "Warning: '#{key}' not found in strings data file."
|
||||
end
|
||||
if !@strings.language_codes.include?(lang)
|
||||
@strings.add_language_code(lang)
|
||||
|
|
|
@ -89,7 +89,7 @@ module Twine
|
|||
begin
|
||||
read_write_string_file(item, true, nil)
|
||||
rescue Twine::Error => e
|
||||
STDERR.puts "#{e.message}"
|
||||
Twine::stderr.puts "#{e.message}"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -168,7 +168,7 @@ module Twine
|
|||
begin
|
||||
read_write_string_file(real_path, true, nil)
|
||||
rescue Twine::Error => e
|
||||
STDERR.puts "#{e.message}"
|
||||
Twine::stderr.puts "#{e.message}"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -218,7 +218,7 @@ module Twine
|
|||
raise Twine::Error.new errors.join("\n\n")
|
||||
end
|
||||
|
||||
puts "#{@options[:strings_file]} is valid."
|
||||
Twine::stdout.puts "#{@options[:strings_file]} is valid."
|
||||
end
|
||||
|
||||
def determine_language_given_path(path)
|
||||
|
|
|
@ -2,6 +2,7 @@ require 'erb'
|
|||
require 'minitest/autorun'
|
||||
require "mocha/mini_test"
|
||||
require 'securerandom'
|
||||
require 'stringio'
|
||||
require 'twine'
|
||||
require 'twine_file_dsl'
|
||||
|
||||
|
@ -12,6 +13,8 @@ class TwineTestCase < Minitest::Test
|
|||
|
||||
def setup
|
||||
super
|
||||
Twine::stdout = StringIO.new
|
||||
Twine::stderr = StringIO.new
|
||||
@output_dir = Dir.mktmpdir
|
||||
@output_path = File.join @output_dir, SecureRandom.uuid
|
||||
end
|
||||
|
|
Reference in a new issue