#!/usr/bin/env ruby require_relative '../lib/mp4_renamer' include Mp4Renamer # To get the help for your gem uncomment the next line # Mp4Renamer::CLI.start(ARGV) # and run the following command # $./bin/mp4_renamer help execute if ARGV.empty? Mp4Renamer::CLI.start(%w[usage]) else Mp4Renamer::CLI.start(%w[execute].concat(ARGV)) end