Kouhei Sutou
null+****@clear*****
Mon Jan 28 11:05:02 JST 2013
Kouhei Sutou 2013-01-28 11:05:02 +0900 (Mon, 28 Jan 2013) New Revision: 3502a3fb060135f5d03a056cbd7725c4f2d29a14 https://github.com/groonga/fluent-plugin-kotoumi/commit/3502a3fb060135f5d03a056cbd7725c4f2d29a14 Log: Add license header Modified files: Rakefile fluent-plugin-kotoumi.gemspec lib/fluent/plugin/kotoumi.rb lib/fluent/plugin/out_kotoumi.rb lib/fluent/plugin/out_socket_io.rb test/helper.rb test/plugin/test_out_socket_io.rb Modified: Rakefile (+15 -0) =================================================================== --- Rakefile 2013-01-25 16:12:30 +0900 (431fa27) +++ Rakefile 2013-01-28 11:05:02 +0900 (aaed7f0) @@ -1,3 +1,18 @@ +# Copyright (C) 2013 Kotoumi project +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License version 2.1 as published by the Free Software Foundation. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + require "bundler/gem_tasks" require "rake/testtask" Modified: fluent-plugin-kotoumi.gemspec (+16 -0) =================================================================== --- fluent-plugin-kotoumi.gemspec 2013-01-25 16:12:30 +0900 (095425a) +++ fluent-plugin-kotoumi.gemspec 2013-01-28 11:05:02 +0900 (f3adc6c) @@ -1,4 +1,20 @@ # -*- coding: utf-8 -*- +# +# Copyright (C) 2013 Kotoumi project +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License version 2.1 as published by the Free Software Foundation. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Gem::Specification.new do |gem| gem.name = "fluent-plugin-kotoumi" gem.version = "0.0.1" Modified: lib/fluent/plugin/kotoumi.rb (+16 -1) =================================================================== --- lib/fluent/plugin/kotoumi.rb 2013-01-25 16:12:30 +0900 (24aa19b) +++ lib/fluent/plugin/kotoumi.rb 2013-01-28 11:05:02 +0900 (1e25618) @@ -1,4 +1,19 @@ -# -*- coding: utf-8 -*- + +## -*- coding: utf-8 -*- +# Copyright (C) 2013 Kotoumi project +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License version 2.1 as published by the Free Software Foundation. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA require 'groonga' Modified: lib/fluent/plugin/out_kotoumi.rb (+15 -0) =================================================================== --- lib/fluent/plugin/out_kotoumi.rb 2013-01-25 16:12:30 +0900 (9581f18) +++ lib/fluent/plugin/out_kotoumi.rb 2013-01-28 11:05:02 +0900 (d450e9a) @@ -1,4 +1,19 @@ # -*- mode: ruby; coding: utf-8 -*- +# +# Copyright (C) 2013 Kotoumi project +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License version 2.1 as published by the Free Software Foundation. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA require 'SocketIO' Modified: lib/fluent/plugin/out_socket_io.rb (+15 -0) =================================================================== --- lib/fluent/plugin/out_socket_io.rb 2013-01-25 16:12:30 +0900 (8a6168a) +++ lib/fluent/plugin/out_socket_io.rb 2013-01-28 11:05:02 +0900 (bd29dfa) @@ -1,4 +1,19 @@ # -*- mode: ruby; coding: utf-8 -*- +# +# Copyright (C) 2013 Kotoumi project +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License version 2.1 as published by the Free Software Foundation. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA require 'SocketIO' Modified: test/helper.rb (+15 -0) =================================================================== --- test/helper.rb 2013-01-25 16:12:30 +0900 (5b40568) +++ test/helper.rb 2013-01-28 11:05:02 +0900 (0526a19) @@ -1,3 +1,18 @@ +# Copyright (C) 2013 Kotoumi project +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License version 2.1 as published by the Free Software Foundation. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + require 'rubygems' require 'bundler' begin Modified: test/plugin/test_out_socket_io.rb (+15 -0) =================================================================== --- test/plugin/test_out_socket_io.rb 2013-01-25 16:12:30 +0900 (e5c5af6) +++ test/plugin/test_out_socket_io.rb 2013-01-28 11:05:02 +0900 (e36d711) @@ -1,3 +1,18 @@ +# Copyright (C) 2013 Kotoumi project +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License version 2.1 as published by the Free Software Foundation. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + require 'helper' class SocketIOOutputTest < Test::Unit::TestCase -------------- next part -------------- HTML����������������������������...다운로드