#!/usr/bin/ruby require "slop" require "byebug" require_relative "../lib/tlapse" opts = Slop.parse do |o| o.on "-v", "--version", "print the version" do puts Tlapse::VERSION exit end o.on "-h", "--help", "print this dialog" do puts o exit end end puts opts