[Groonga-commit] groonga/fluent-plugin-droonga at f465d96 [master] column_create: use "create" instead of "parse" for method name

Back to archive index

Kosuke Asami null+****@clear*****
Tue Jul 16 14:33:38 JST 2013


Kosuke Asami	2013-07-16 14:33:38 +0900 (Tue, 16 Jul 2013)

  New Revision: f465d969d348b55f485f5b714cc3bb5719f0eb7d
  https://github.com/groonga/fluent-plugin-droonga/commit/f465d969d348b55f485f5b714cc3bb5719f0eb7d

  Message:
    column_create: use "create" instead of "parse" for method name
    
    Because the method isn't parsed. It just creates options for column
    method.
    
    parse_flags ->
    create_column_options_flags

  Modified files:
    lib/droonga/plugin/groonga/column_create.rb

  Modified: lib/droonga/plugin/groonga/column_create.rb (+2 -2)
===================================================================
--- lib/droonga/plugin/groonga/column_create.rb    2013-07-16 14:29:06 +0900 (6553f7b)
+++ lib/droonga/plugin/groonga/column_create.rb    2013-07-16 14:33:38 +0900 (277ef0d)
@@ -45,11 +45,11 @@ module Droonga
       private
       def create_column_options
         options = {}
-        parse_flags(options)
+        create_column_options_flags(options)
         options
       end
 
-      def parse_flags(options)
+      def create_column_options_flags(options)
         options[:type] = :scalar
         if****@comma*****_scalar?
           options[:type] = :scalar
-------------- next part --------------
HTML����������������������������...
Download 



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