null+****@clear*****
null+****@clear*****
Mon Jan 23 18:04:45 JST 2012
SUZUKI Miho 2012-01-23 18:04:45 +0900 (Mon, 23 Jan 2012) New Revision: 9d9f6ed4ce6724e124179b8ed73b3d47414b5bad Merged 8cd0856: Merge pull request #24 from logaling/improve-index Log: [#19] remove unnecessary method Modified files: lib/logaling/repository.rb Modified: lib/logaling/repository.rb (+0 -20) =================================================================== --- lib/logaling/repository.rb 2012-01-23 17:25:14 +0900 (4a02672) +++ lib/logaling/repository.rb 2012-01-23 18:04:45 +0900 (028745b) @@ -88,8 +88,6 @@ module Logaling end end end - - FileUtils.touch(index_at_file) end def glossary_counts @@ -132,20 +130,6 @@ module Logaling end private - def latest_index? - if File.exist?(index_at_file) - index_at = File.mtime(index_at_file) - all_glossary_files = [cache_path, registered_projects.map{|path| File.join(path, "glossary")}].flatten.map{|path| get_all_glossary_paths(path)}.flatten - unless Dir.glob(all_glossary_files).any?{|file| File.mtime(file) >= index_at } - true - else - false - end - else - false - end - end - def get_glossaries(path) Dir.glob(get_all_glossary_paths(path)).map do |file| glossary_name, source_language, target_language = File::basename(file, ".*").split(".") @@ -180,9 +164,5 @@ module Logaling def imported_glossaries Dir[File.join(cache_path, "*")] end - - def index_at_file - File.join(logaling_db_home, "index_at") - end end end