Sha256: c984cbd69353c3dac61fc24e1081c7d586c6fd55bf11cf10630552e4f38d0335
Contents?: true
Size: 1.36 KB
Versions: 21
Compression:
Stored size: 1.36 KB
Contents
#!/usr/bin/env ruby # -*- coding: utf-8 -*- # # Copyright (C) 2012 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
21 entries across 21 versions & 1 rubygems