Sha256: ddefcd7f78d86ae7f25c748559b37c133a484cff21c7a33ff031f997afce08f9

Contents?: true

Size: 1.06 KB

Versions: 12

Compression:

Stored size: 1.06 KB

Contents

#!/usr/bin/env ruby
#  Copyright (c) 2013-2014 SUSE LLC
#
#  This program is free software; you can redistribute it and/or
#  modify it under the terms of version 3 of the GNU General Public License as
#  published by the Free Software Foundation.
#
#  This program 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 General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, contact SUSE LLC.
#
#  To contact SUSE about this file by physical or electronic mail,
#  you may find current contact information at www.suse.com

require_relative '../lib/trollolo'

config_path = ENV["TROLLOLO_CONFIG_PATH"] || File.expand_path("~/.trollolorc")

Cli.settings = Settings.new(config_path)

# Set debug flag, so thor throws exceptions on error
ENV["THOR_DEBUG"] = "1"
begin
  Cli.check_unknown_options!
  Cli.start
rescue Thor::Error => e
  STDERR.puts e
  exit 1
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
trollolo-0.1.1 bin/trollolo
trollolo-0.1.0 bin/trollolo
trollolo-0.0.14 bin/trollolo
trollolo-0.0.12 bin/trollolo
trollolo-0.0.11 bin/trollolo
trollolo-0.0.10 bin/trollolo
trollolo-0.0.9 bin/trollolo
trollolo-0.0.8 bin/trollolo
trollolo-0.0.7 bin/trollolo
trollolo-0.0.6 bin/trollolo
trollolo-0.0.5 bin/trollolo
trollolo-0.0.4 bin/trollolo