null+****@clear*****
null+****@clear*****
Wed Feb 15 13:29:04 JST 2012
SHIMADA Koji 2012-02-15 13:29:04 +0900 (Wed, 15 Feb 2012) New Revision: 5b791131623ba48e04238446c292e1352f435047 Log: Remove 'self' Modified files: lib/logaling/config.rb Modified: lib/logaling/config.rb (+2 -2) =================================================================== --- lib/logaling/config.rb 2012-02-15 12:03:51 +0900 (78cbbc7) +++ lib/logaling/config.rb 2012-02-15 13:29:04 +0900 (8c21895) @@ -19,7 +19,7 @@ module Logaling def setup(project_name, source_language, target_language) config = {"glossary" => project_name, "source-language" => source_language} config["target-language"] = target_language if target_language - self.new(config) + new(config) end def add(config_path, key, value) @@ -36,7 +36,7 @@ module Logaling config = merge_options(project_config, global_config) config = merge_options(options, config) - self.new(config) + new(config) end private