Kouhei Sutou
null+****@clear*****
Wed Nov 20 17:36:28 JST 2013
Kouhei Sutou 2013-11-20 17:36:28 +0900 (Wed, 20 Nov 2013) New Revision: 18fc9d39f9852d80c97fc14167281353416f2cd2 https://github.com/droonga/drntest/commit/18fc9d39f9852d80c97fc14167281353416f2cd2 Message: Add license headers Modified files: Gemfile bin/drntest lib/drntest/test-result.rb lib/drntest/test-runner.rb lib/drntest/test-suites-result.rb lib/drntest/tester.rb Modified: Gemfile (+17 -0) =================================================================== --- Gemfile 2013-11-20 17:34:50 +0900 (f8580c5) +++ Gemfile 2013-11-20 17:36:28 +0900 (912d898) @@ -1,3 +1,20 @@ +# -*- ruby -*- +# +# Copyright (C) 2013 Droonga Project +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + source "https://rubygems.org" base_dir = File.dirname(__FILE__) Modified: bin/drntest (+15 -0) =================================================================== --- bin/drntest 2013-11-20 17:34:50 +0900 (bc8d302) +++ bin/drntest 2013-11-20 17:36:28 +0900 (d718b9a) @@ -1,4 +1,19 @@ #!/usr/bin/env ruby +# +# Copyright (C) 2013 Droonga Project +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. require "drntest/tester" Modified: lib/drntest/test-result.rb (+15 -0) =================================================================== --- lib/drntest/test-result.rb 2013-11-20 17:34:50 +0900 (df4748b) +++ lib/drntest/test-result.rb 2013-11-20 17:36:28 +0900 (a268834) @@ -1,3 +1,18 @@ +# Copyright (C) 2013 Droonga Project +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + module Drntest class TestResult attr_accessor :name, :expected, :actual Modified: lib/drntest/test-runner.rb (+15 -0) =================================================================== --- lib/drntest/test-runner.rb 2013-11-20 17:34:50 +0900 (471c9f1) +++ lib/drntest/test-runner.rb 2013-11-20 17:36:28 +0900 (caf4279) @@ -1,3 +1,18 @@ +# Copyright (C) 2013 Droonga Project +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + require "json" require "droonga/client" require "tempfile" Modified: lib/drntest/test-suites-result.rb (+15 -0) =================================================================== --- lib/drntest/test-suites-result.rb 2013-11-20 17:34:50 +0900 (78b589b) +++ lib/drntest/test-suites-result.rb 2013-11-20 17:36:28 +0900 (9bf0572) @@ -1,3 +1,18 @@ +# Copyright (C) 2013 Droonga Project +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + module Drntest class TestSuitesResult attr_accessor :test_results Modified: lib/drntest/tester.rb (+15 -0) =================================================================== --- lib/drntest/tester.rb 2013-11-20 17:34:50 +0900 (5efd0bd) +++ lib/drntest/tester.rb 2013-11-20 17:36:28 +0900 (721d415) @@ -1,3 +1,18 @@ +# Copyright (C) 2013 Droonga Project +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + require "optparse" require "drntest/version" require "drntest/test-runner" -------------- next part -------------- HTML����������������������������...Download