[Groonga-commit] groonga/gcs [master] Rename croonga to gcs

Back to archive index

null+****@clear***** null+****@clear*****
2012年 6月 20日 (水) 13:51:12 JST


Yoji SHIDARA	2012-06-20 13:51:12 +0900 (Wed, 20 Jun 2012)

  New Revision: 681feac52152a3ff98091f060541ec37d9a6a711
  https://github.com/groonga/gcs/commit/681feac52152a3ff98091f060541ec37d9a6a711

  Log:
    Rename croonga to gcs

  Modified files:
    bin/gcs

  Modified: bin/gcs (+4 -4)
===================================================================
--- bin/gcs    2012-06-20 13:49:33 +0900 (edfa910)
+++ bin/gcs    2012-06-20 13:51:12 +0900 (cf751c5)
@@ -1,21 +1,21 @@
 #!/usr/bin/env node
 
-var croongaServer = require(__dirname + '/../lib/server');
+var gcsServer = require(__dirname + '/../lib/server');
 var program = require('commander');
 
 program
   .usage('[options]')
   .option('-p, --port <port>', 'specify port [3000]', Number, 3000)
-  .option('--database-path <path>', 'database path [./database/croonga]', String, './database/croonga')
+  .option('--database-path <path>', 'database path [./database/gcs]', String, './database/croonga')
   .parse(process.argv);
 
 var server;
 
-server = croongaServer.createServer({
+server = gcsServer.createServer({
   databasePath: program.databasePath
 });
 
 server.listen(program.port, function() {
-  console.log('croonga listening at %d', program.port);
+  console.log('gcs listening at %d', program.port);
   console.log('database is at %s', program.databasePath);
 });
-------------- next part --------------
HTML$B$NE:IU%U%!%$%k$rJ]4I$7$^$7$?(B...
Download 



Groonga-commit メーリングリストの案内
Back to archive index