null+****@clear*****
null+****@clear*****
2012年 3月 6日 (火) 16:11:11 JST
Kouhei Sutou 2012-03-06 16:11:11 +0900 (Tue, 06 Mar 2012)
New Revision: 7e3dc65035ca13261eb55f8e94f9d8b67215ad0e
Log:
GroongaTester -> Groonga::Tester
Modified files:
bin/groonga-test
lib/groonga/tester.rb
Modified: bin/groonga-test (+1 -1)
===================================================================
--- bin/groonga-test 2012-03-06 16:10:00 +0900 (afc2bf6)
+++ bin/groonga-test 2012-03-06 16:11:11 +0900 (f074b7c)
@@ -17,4 +17,4 @@
require "groonga/tester"
-exit(GroongaTester.run)
+exit(Groonga::Tester.run)
Modified: lib/groonga/tester.rb (+3 -1)
===================================================================
--- lib/groonga/tester.rb 2012-03-06 16:10:00 +0900 (e4b8504)
+++ lib/groonga/tester.rb 2012-03-06 16:11:11 +0900 (285391b)
@@ -23,7 +23,8 @@ require "tempfile"
require "json"
require "shellwords"
-class GroongaTester
+module Groonga
+class Tester
VERSION = "1.0.0"
class << self
@@ -580,3 +581,4 @@ class GroongaTester
end
end
end
+end