Skip to content

Instantly share code, notes, and snippets.

@srabuini
Created May 16, 2016 04:30
Show Gist options
  • Save srabuini/e128acf8ec712114896940cdbdec5002 to your computer and use it in GitHub Desktop.
Save srabuini/e128acf8ec712114896940cdbdec5002 to your computer and use it in GitHub Desktop.
ARGV.select do |argument|
case argument
when /\*/ then
Dir.glob(argument).each do |file|
require File.expand_path(file)
end
else
require File.expand_path(argument)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment