pry--pry/bin/pry

71 lines
1.5 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env ruby
# (C) John Mair (banisterfiend)
# MIT license
begin
require 'pry'
rescue LoadError
require 'rubygems'
require 'pry'
end
2011-04-24 14:33:34 +00:00
opts = Slop.parse(:help => true) do
2011-04-19 12:13:22 +00:00
banner %{Usage: pry [OPTIONS]
Start a Pry session.
See: `https://github.com/banister` for more information.
--
}
2011-04-19 12:13:22 +00:00
on :e, :exec, "A line of code to execute in context before the session starts", true
2011-04-24 08:47:19 +00:00
on :f, "Suppress loading of ~/.pryrc"
2011-04-19 12:13:22 +00:00
on "no-color", "Disable syntax highlighting for session"
2011-04-19 12:13:22 +00:00
on "simple-prompt", "Enable simple prompt mode" do
Pry.prompt = Pry::SIMPLE_PROMPT
end
2011-04-19 12:13:22 +00:00
on :r, :require, "`require` a Ruby script at startup", true do |file|
require file
end
2011-04-19 12:13:22 +00:00
on :I, "Add a path to the $LOAD_PATH", true do |path|
$LOAD_PATH << path
end
2011-04-19 12:13:22 +00:00
on :v, :version, "Display the Pry version" do
puts "Pry version #{Pry::VERSION} on Ruby #{RUBY_VERSION}"
exit
end
2011-04-19 12:13:22 +00:00
on(:c, :context,
"Start the session in the specified context. Equivalent to `context.pry` in a session.",
true,
:default => "TOPLEVEL_BINDING"
)
end
# invoked via cli
Pry.cli = true
Pry::Commands.instance_eval do
command "reset", "Reset the REPL to a clean state." do
output.puts "Pry reset."
exec("pry")
end
end
# load ~/.pryrc, if not suppressed with -f option
2011-04-19 12:13:22 +00:00
Pry.should_load_rc = !opts.f?
# create the actual context
2011-04-19 12:13:22 +00:00
context = Pry.binding_for(eval(opts[:context]))
# run code passed with `-e`, if there is any.
2011-04-19 12:13:22 +00:00
if opts.exec?
Pry.new(:input => StringIO.new(opts[:exec]), :print => proc {}).rep(context)
end
# start the session
context.pry