summaryrefslogtreecommitdiff
path: root/bin/pry
blob: 7cd68cb05a198c9bc5d1d2e44ea05cc76fe7d3ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env ruby
# frozen_string_literal: true

# (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)