[Groonga-commit] droonga/fluent-plugin-droonga at 9a2de39 [master] Add "Legacy" prefix

Back to archive index

Kouhei Sutou null+****@clear*****
Fri Feb 7 17:02:19 JST 2014


Kouhei Sutou	2014-02-07 17:02:19 +0900 (Fri, 07 Feb 2014)

  New Revision: 9a2de39f1627d238cc426a989e5cc3a34f24f288
  https://github.com/droonga/fluent-plugin-droonga/commit/9a2de39f1627d238cc426a989e5cc3a34f24f288

  Message:
    Add "Legacy" prefix

  Modified files:
    lib/droonga/plugin_registerable.rb
  Renamed files:
    lib/droonga/legacy_plugin_repository.rb
      (from lib/droonga/plugin_repository.rb)

  Renamed: lib/droonga/legacy_plugin_repository.rb (+2 -4) 93%
===================================================================
--- lib/droonga/plugin_repository.rb    2014-02-07 15:35:15 +0900 (3047e0d)
+++ lib/droonga/legacy_plugin_repository.rb    2014-02-07 17:02:19 +0900 (2de3124)
@@ -1,6 +1,4 @@
-# -*- coding: utf-8 -*-
-#
-# Copyright (C) 2013 Droonga Project
+# Copyright (C) 2013-2014 Droonga Project
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
@@ -16,7 +14,7 @@
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 module Droonga
-  class PluginRepository
+  class LegacyPluginRepository
     include Enumerable
 
     def initialize

  Modified: lib/droonga/plugin_registerable.rb (+3 -2)
===================================================================
--- lib/droonga/plugin_registerable.rb    2014-02-07 15:35:15 +0900 (72055f8)
+++ lib/droonga/plugin_registerable.rb    2014-02-07 17:02:19 +0900 (79b64d1)
@@ -17,14 +17,15 @@
 
 require "droonga/command"
 require "droonga/command_repository"
-require "droonga/plugin_repository"
+require "droonga/legacy_plugin_repository"
 
 module Droonga
   module PluginRegisterable
     class << self
       def extended(plugin_class)
         super
-        plugin_class.class_variable_set(:@@repository, PluginRepository.new)
+        plugin_class.class_variable_set(:@@repository,
+                                        LegacyPluginRepository.new)
       end
     end
 
-------------- next part --------------
HTML����������������������������...
下載 



More information about the Groonga-commit mailing list
Back to archive index