mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
12 lines
189 B
Ruby
Executable file
12 lines
189 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
|
|
# (C) John Mair (banisterfiend)
|
|
# MIT license
|
|
|
|
$0 = 'pry'
|
|
|
|
require 'pry'
|
|
|
|
# Process command line options and run Pry
|
|
opts = Pry::CLI.parse_options
|
|
Pry::CLI.start(opts)
|