Sha256: baaa7449df14f83b3811e776fb9beaffc7056a8f8d1803c12b91889116349a52
Contents?: true
Size: 1.28 KB
Versions: 1
Compression:
Stored size: 1.28 KB
Contents
# encoding: UTF-8 require "thor" require_relative 'doi_utils' require_relative 'utils' module Bolognese class CLI < Thor include Bolognese::DoiUtils include Bolognese::Utils default_task :open def self.exit_on_failure? true end # from http://stackoverflow.com/questions/22809972/adding-a-version-option-to-a-ruby-thor-cli map %w[--version -v] => :__print_version desc "--version, -v", "print the version" def __print_version puts Bolognese::VERSION end desc "read id", "read metadata for ID" method_option :as, default: "schema_org" method_option :schema_version def read(id) id = normalize_id(id) provider = find_provider(id) set_metadata(id: id, provider: provider, as: options[:as], schema_version: options[:schema_version]) end desc "open file", "read metadata from file" method_option :as, default: "schema_org" method_option :schema_version def open(file) ext = File.extname(file) unless %w(.bib).include? ext $stderr.puts "File type #{ext} not supported" exit 1 end string = IO.read(file) provider = "bibtex" set_metadata(string: string, provider: provider, as: options[:as], schema_version: options[:schema_version]) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bolognese-0.6.2 | lib/bolognese/cli.rb |