Sha256: ef0c0a8f475d7fd1da7ca2666444f75338795d49a149fd0bf5c1df47b4ea2922
Contents?: true
Size: 1.42 KB
Versions: 18
Compression:
Stored size: 1.42 KB
Contents
#!/usr/bin/env ruby # -*- coding: utf-8 -*- # # Copyright (C) 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 = Groonga::DatabaseInspector::Options.new parser = OptionParser.new parser.version = Groonga::BINDINGS_VERSION parser.banner += " DB_PATH" parser.on("--no-tables", "Don't show table information") do |boolean| options.show_tables = boolean end parser.on("--no-columns", "Don't show column information") do |boolean| options.show_columns = boolean end args = parser.parse!(ARGV) if args.size != 1 puts(parser.help) exit(false) end db_path = args[0] Groonga::Database.open(db_path) do |database| inspector = Groonga::DatabaseInspector.new(database, options) inspector.report end
Version data entries
18 entries across 18 versions & 1 rubygems