Sha256: 5b717cfa9a956b8e6c639ef56ac96f6a811868f0067722c7d2b790d059649047

Contents?: true

Size: 1.37 KB

Versions: 11

Compression:

Stored size: 1.37 KB

Contents

#!/usr/bin/env ruby
# -*- coding: utf-8 -*-
#
# Copyright (C) 2012-2013  Kouhei Sutou <kou@clear-code.com>
#
# 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 "ostruct"
require "optparse"
require "pathname"

require "groonga"

options = OpenStruct.new
options.output_directory = "index-dump"

option_parser = OptionParser.new do |parser|
  parser.banner += " DB_PATH"

  parser.on("--output-directory=DIRECTORY",
            "Dump index to under DIRECTORY",
            "(#{options.ouitput_directory})") do |directory|
    options.output_directory = directory
  end
end
args = option_parser.parse!(ARGV)

if args.size != 1
  puts(option_parser)
  exit(false)
end
db_path = args[0]

Groonga::Database.open(db_path) do |database|
  database.dump_index(options.output_directory)
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rroonga-3.1.0-x64-mingw32 bin/groonga-index-dump
rroonga-3.1.0-x86-mingw32 bin/groonga-index-dump
rroonga-3.1.0 bin/groonga-index-dump
rroonga-3.0.9-x64-mingw32 bin/groonga-index-dump
rroonga-3.0.9-x86-mingw32 bin/groonga-index-dump
rroonga-3.0.9 bin/groonga-index-dump
rroonga-3.0.8-x86-mingw32 bin/groonga-index-dump
rroonga-3.0.8-x64-mingw32 bin/groonga-index-dump
rroonga-3.0.8 bin/groonga-index-dump
rroonga-3.0.7-x86-mingw32 bin/groonga-index-dump
rroonga-3.0.7 bin/groonga-index-dump