YUKI Hiroshi
null+****@clear*****
Fri Mar 1 14:06:00 JST 2013
YUKI Hiroshi 2013-03-01 14:06:00 +0900 (Fri, 01 Mar 2013) New Revision: 68fedacd487ff0677904477092198b2af87b6134 https://github.com/groonga/fluent-plugin-droonga/commit/68fedacd487ff0677904477092198b2af87b6134 Log: Rename project to "droonga" (distributed-groonga) Modified files: LICENSE.txt README.md Rakefile sample/fluentd.conf test/helper.rb test/test_worker.rb Renamed files: fluent-plugin-droonga.gemspec (from fluent-plugin-kotoumi.gemspec) lib/droonga/worker.rb (from lib/kotoumi/worker.rb) lib/fluent/plugin/out_droonga.rb (from lib/fluent/plugin/out_kotoumi.rb) Modified: LICENSE.txt (+1 -1) =================================================================== --- LICENSE.txt 2013-01-31 18:11:48 +0900 (d0e9143) +++ LICENSE.txt 2013-03-01 14:06:00 +0900 (fac5456) @@ -1,4 +1,4 @@ -Copyright (C) 2013 Kotoumi project +Copyright (C) 2013 droonga project This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public Modified: README.md (+5 -5) =================================================================== --- README.md 2013-01-31 18:11:48 +0900 (966a853) +++ README.md 2013-03-01 14:06:00 +0900 (5ad89a4) @@ -1,11 +1,11 @@ -# Fluent::Plugin::Kotoumi +# Fluent::Plugin::Droonga TODO: Write a gem description -## What's "kotoumi"? +## What's "droonga"? -Kotoumi is a distributed fulltext search engine. -This package provides kotoumi plugin for Fluent event collector. +Droonga is a distributed fulltext search engine, named from "distributed-groonga". +This package provides droonga plugin for Fluent event collector. ## Usage @@ -13,6 +13,6 @@ TODO: Write usage. ## Copyright -* Copyright (c) 2013 Kotoumi project +* Copyright (c) 2013 droonga project * License * GNU Lesser General Public License version 2.1 Modified: Rakefile (+1 -1) =================================================================== --- Rakefile 2013-01-31 18:11:48 +0900 (f47d62f) +++ Rakefile 2013-03-01 14:06:00 +0900 (b1491ed) @@ -1,6 +1,6 @@ # -*- ruby -*- # -# Copyright (C) 2013 Kotoumi project +# Copyright (C) 2013 droonga project # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public Renamed: fluent-plugin-droonga.gemspec (+6 -6) 84% =================================================================== --- fluent-plugin-kotoumi.gemspec 2013-01-31 18:11:48 +0900 (32b9fdd) +++ fluent-plugin-droonga.gemspec 2013-03-01 14:06:00 +0900 (81e4733) @@ -1,6 +1,6 @@ # -*- mode: ruby; coding: utf-8 -*- # -# Copyright (C) 2013 Kotoumi project +# Copyright (C) 2013 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,13 +16,13 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Gem::Specification.new do |gem| - gem.name = "fluent-plugin-kotoumi" + gem.name = "fluent-plugin-droonga" gem.version = "0.0.1" - gem.authors = ["Kotoumi project"] - gem.email = ["kotoumi �� groonga.org"] - gem.description = "kotoumi(distributed groonga) plugin for Fluent event collector" + gem.authors = ["droonga project"] + gem.email = ["droonga �� groonga.org"] + gem.description = "droonga(distributed groonga) plugin for Fluent event collector" gem.summary = gem.description - gem.homepage = "https://github.com/groonga/fluent-plugin-kotoumi" + gem.homepage = "https://github.com/groonga/fluent-plugin-droonga" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) Renamed: lib/droonga/worker.rb (+2 -2) 97% =================================================================== --- lib/kotoumi/worker.rb 2013-01-31 18:11:48 +0900 (0b1fd0d) +++ lib/droonga/worker.rb 2013-03-01 14:06:00 +0900 (39fd3df) @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2013 Kotoumi project +# Copyright (C) 2013 droonga project # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -19,7 +19,7 @@ require "time" require 'groonga' -module Kotoumi +module Droonga class Worker def initialize(database, queue_name) @context = Groonga::Context.new Renamed: lib/fluent/plugin/out_droonga.rb (+7 -7) 85% =================================================================== --- lib/fluent/plugin/out_kotoumi.rb 2013-01-31 18:11:48 +0900 (fbcc219) +++ lib/fluent/plugin/out_droonga.rb 2013-03-01 14:06:00 +0900 (c3a0e56) @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2013 Kotoumi project +# Copyright (C) 2013 droonga project # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -17,19 +17,19 @@ require "socket" require "msgpack" -require "kotoumi/worker" +require "droonga/worker" module Fluent - class KotoumiOutput < Output - Plugin.register_output("kotoumi", self) + class DroongaOutput < Output + Plugin.register_output("droonga", self) - config_param :database, :string, :default => "kotoumi.db" - config_param :queue_name, :string, :default => "KotoumiQueue" + config_param :database, :string, :default => "droonga.db" + config_param :queue_name, :string, :default => "DroongaQueue" def start super # prefork @workers - @worker = Kotoumi::Worker.new(@database, @queue_name) + @worker = Droonga::Worker.new(@database, @queue_name) @outputs = {} end Modified: sample/fluentd.conf (+2 -2) =================================================================== --- sample/fluentd.conf 2013-01-31 18:11:48 +0900 (9d786c8) +++ sample/fluentd.conf 2013-03-01 14:06:00 +0900 (3665d5b) @@ -2,6 +2,6 @@ type forward </source> -<match kotoumi.message> - type kotoumi +<match droonga.message> + type droonga </match> Modified: test/helper.rb (+2 -2) =================================================================== --- test/helper.rb 2013-01-31 18:11:48 +0900 (35bea29) +++ test/helper.rb 2013-03-01 14:06:00 +0900 (0f2c50c) @@ -1,4 +1,4 @@ -# Copyright (C) 2013 Kotoumi project +# Copyright (C) 2013 droonga project # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -69,7 +69,7 @@ module Sandbox FileUtils.mkdir_p(@base_temporary_directory.to_s) end - @temporary_directory = @base_temporary_directory + "fluent-plugin-kotoumi" + @temporary_directory = @base_temporary_directory + "fluent-plugin-droonga" FileUtils.rm_rf(@temporary_directory.to_s) FileUtils.mkdir_p(@temporary_directory.to_s) end Modified: test/test_worker.rb (+3 -3) =================================================================== --- test/test_worker.rb 2013-01-31 18:11:48 +0900 (682caf4) +++ test/test_worker.rb 2013-03-01 14:06:00 +0900 (dffaa1e) @@ -1,4 +1,4 @@ -# Copyright (C) 2013 Kotoumi project +# Copyright (C) 2013 droonga project # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -15,7 +15,7 @@ require "helper" -require "kotoumi/worker" +require "droonga/worker" class WorkerTest < Test::Unit::TestCase def setup @@ -33,7 +33,7 @@ class WorkerTest < Test::Unit::TestCase end def setup_worker - @worker = Kotoumi::Worker.new(@database_path.to_s, "KotoumiQueue") + @worker = Droonga::Worker.new(@database_path.to_s, "DroongaQueue") end def teardown_worker -------------- next part -------------- HTML����������������������������...Download