1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
pry--pry/bin/pry

16 lines
227 B
Ruby
Executable file

#!/usr/bin/env ruby
# (C) John Mair (banisterfiend)
# MIT license
$0 = 'pry'
begin
require 'pry'
rescue LoadError
require 'rubygems'
require 'pry'
end
# Process command line options and run Pry
Pry::CLI.parse_options