mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
18c45d26c5
This will greatly ease Pry support on Ruby 3.0 (when it's out).
10 lines
172 B
Ruby
Executable file
10 lines
172 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
$0 = 'pry'
|
|
|
|
require 'pry'
|
|
|
|
# Process command line options and run Pry
|
|
opts = Pry::CLI.parse_options
|
|
Pry::CLI.start(opts)
|