summaryrefslogtreecommitdiff
path: root/bin/pry
blob: 3904fe96d974ef7bec664fb5562b95bc9ba80407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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