pry 0.10.3 → 0.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/CHANGELOG.md +439 -16
- data/LICENSE +1 -1
- data/README.md +362 -302
- data/bin/pry +4 -7
- data/lib/pry/basic_object.rb +10 -0
- data/lib/pry/block_command.rb +22 -0
- data/lib/pry/class_command.rb +194 -0
- data/lib/pry/cli.rb +84 -97
- data/lib/pry/code/code_file.rb +37 -26
- data/lib/pry/code/code_range.rb +7 -5
- data/lib/pry/code/loc.rb +26 -13
- data/lib/pry/code.rb +42 -31
- data/lib/pry/code_object.rb +53 -28
- data/lib/pry/color_printer.rb +46 -35
- data/lib/pry/command.rb +197 -369
- data/lib/pry/command_set.rb +89 -114
- data/lib/pry/command_state.rb +31 -0
- data/lib/pry/commands/amend_line.rb +86 -82
- data/lib/pry/commands/bang.rb +18 -14
- data/lib/pry/commands/bang_pry.rb +15 -11
- data/lib/pry/commands/cat/abstract_formatter.rb +23 -18
- data/lib/pry/commands/cat/exception_formatter.rb +85 -72
- data/lib/pry/commands/cat/file_formatter.rb +56 -46
- data/lib/pry/commands/cat/input_expression_formatter.rb +35 -30
- data/lib/pry/commands/cat.rb +62 -54
- data/lib/pry/commands/cd.rb +40 -35
- data/lib/pry/commands/change_inspector.rb +29 -22
- data/lib/pry/commands/change_prompt.rb +48 -23
- data/lib/pry/commands/clear_screen.rb +20 -0
- data/lib/pry/commands/code_collector.rb +148 -131
- data/lib/pry/commands/disable_pry.rb +23 -19
- data/lib/pry/commands/easter_eggs.rb +23 -34
- data/lib/pry/commands/edit/exception_patcher.rb +21 -17
- data/lib/pry/commands/edit/file_and_line_locator.rb +34 -23
- data/lib/pry/commands/edit.rb +185 -157
- data/lib/pry/commands/exit.rb +40 -35
- data/lib/pry/commands/exit_all.rb +24 -20
- data/lib/pry/commands/exit_program.rb +20 -16
- data/lib/pry/commands/find_method.rb +168 -162
- data/lib/pry/commands/fix_indent.rb +16 -12
- data/lib/pry/commands/help.rb +140 -133
- data/lib/pry/commands/hist.rb +151 -149
- data/lib/pry/commands/import_set.rb +20 -15
- data/lib/pry/commands/jump_to.rb +25 -21
- data/lib/pry/commands/list_inspectors.rb +35 -28
- data/lib/pry/commands/ls/constants.rb +59 -31
- data/lib/pry/commands/ls/formatter.rb +42 -36
- data/lib/pry/commands/ls/globals.rb +38 -36
- data/lib/pry/commands/ls/grep.rb +17 -15
- data/lib/pry/commands/ls/instance_vars.rb +29 -28
- data/lib/pry/commands/ls/interrogatable.rb +18 -12
- data/lib/pry/commands/ls/jruby_hacks.rb +47 -41
- data/lib/pry/commands/ls/local_names.rb +26 -24
- data/lib/pry/commands/ls/local_vars.rb +38 -30
- data/lib/pry/commands/ls/ls_entity.rb +47 -52
- data/lib/pry/commands/ls/methods.rb +49 -51
- data/lib/pry/commands/ls/methods_helper.rb +46 -42
- data/lib/pry/commands/ls/self_methods.rb +23 -21
- data/lib/pry/commands/ls.rb +124 -103
- data/lib/pry/commands/nesting.rb +21 -17
- data/lib/pry/commands/play.rb +92 -82
- data/lib/pry/commands/pry_backtrace.rb +22 -17
- data/lib/pry/commands/pry_version.rb +15 -11
- data/lib/pry/commands/raise_up.rb +33 -27
- data/lib/pry/commands/reload_code.rb +60 -48
- data/lib/pry/commands/reset.rb +16 -12
- data/lib/pry/commands/ri.rb +57 -42
- data/lib/pry/commands/save_file.rb +45 -43
- data/lib/pry/commands/shell_command.rb +56 -29
- data/lib/pry/commands/shell_mode.rb +22 -18
- data/lib/pry/commands/show_doc.rb +80 -70
- data/lib/pry/commands/show_info.rb +194 -155
- data/lib/pry/commands/show_input.rb +16 -11
- data/lib/pry/commands/show_source.rb +110 -42
- data/lib/pry/commands/stat.rb +35 -31
- data/lib/pry/commands/switch_to.rb +21 -15
- data/lib/pry/commands/toggle_color.rb +20 -16
- data/lib/pry/commands/watch_expression/expression.rb +32 -27
- data/lib/pry/commands/watch_expression.rb +89 -84
- data/lib/pry/commands/whereami.rb +156 -141
- data/lib/pry/commands/wtf.rb +78 -40
- data/lib/pry/config/attributable.rb +22 -0
- data/lib/pry/config/lazy_value.rb +29 -0
- data/lib/pry/config/memoized_value.rb +34 -0
- data/lib/pry/config/value.rb +24 -0
- data/lib/pry/config.rb +310 -20
- data/lib/pry/control_d_handler.rb +28 -0
- data/lib/pry/core_extensions.rb +22 -9
- data/lib/pry/editor.rb +56 -34
- data/lib/pry/env.rb +18 -0
- data/lib/pry/exception_handler.rb +43 -0
- data/lib/pry/exceptions.rb +13 -18
- data/lib/pry/forwardable.rb +27 -0
- data/lib/pry/helpers/base_helpers.rb +20 -62
- data/lib/pry/helpers/command_helpers.rb +52 -62
- data/lib/pry/helpers/documentation_helpers.rb +21 -12
- data/lib/pry/helpers/options_helpers.rb +15 -8
- data/lib/pry/helpers/platform.rb +55 -0
- data/lib/pry/helpers/table.rb +44 -32
- data/lib/pry/helpers/text.rb +96 -85
- data/lib/pry/helpers.rb +3 -0
- data/lib/pry/history.rb +81 -55
- data/lib/pry/hooks.rb +60 -110
- data/lib/pry/indent.rb +74 -68
- data/lib/pry/input_completer.rb +199 -158
- data/lib/pry/input_lock.rb +7 -10
- data/lib/pry/inspector.rb +36 -24
- data/lib/pry/last_exception.rb +45 -45
- data/lib/pry/method/disowned.rb +19 -5
- data/lib/pry/method/patcher.rb +14 -8
- data/lib/pry/method/weird_method_locator.rb +79 -45
- data/lib/pry/method.rb +178 -124
- data/lib/pry/object_path.rb +37 -28
- data/lib/pry/output.rb +102 -16
- data/lib/pry/pager.rb +187 -174
- data/lib/pry/prompt.rb +213 -25
- data/lib/pry/pry_class.rb +119 -98
- data/lib/pry/pry_instance.rb +261 -224
- data/lib/pry/repl.rb +83 -29
- data/lib/pry/repl_file_loader.rb +27 -22
- data/lib/pry/ring.rb +89 -0
- data/lib/pry/slop/LICENSE +20 -0
- data/lib/pry/slop/commands.rb +190 -0
- data/lib/pry/slop/option.rb +210 -0
- data/lib/pry/slop.rb +672 -0
- data/lib/pry/syntax_highlighter.rb +26 -0
- data/lib/pry/system_command_handler.rb +17 -0
- data/lib/pry/testable/evalable.rb +24 -0
- data/lib/pry/testable/mockable.rb +22 -0
- data/lib/pry/testable/pry_tester.rb +88 -0
- data/lib/pry/testable/utility.rb +34 -0
- data/lib/pry/testable/variables.rb +52 -0
- data/lib/pry/testable.rb +68 -0
- data/lib/pry/version.rb +3 -1
- data/lib/pry/warning.rb +20 -0
- data/lib/pry/{module_candidate.rb → wrapped_module/candidate.rb} +35 -32
- data/lib/pry/wrapped_module.rb +68 -63
- data/lib/pry.rb +133 -149
- metadata +58 -69
- data/lib/pry/commands/disabled_commands.rb +0 -2
- data/lib/pry/commands/gem_cd.rb +0 -26
- data/lib/pry/commands/gem_install.rb +0 -32
- data/lib/pry/commands/gem_list.rb +0 -33
- data/lib/pry/commands/gem_open.rb +0 -29
- data/lib/pry/commands/gist.rb +0 -101
- data/lib/pry/commands/install_command.rb +0 -53
- data/lib/pry/commands/list_prompts.rb +0 -35
- data/lib/pry/commands/simple_prompt.rb +0 -22
- data/lib/pry/commands.rb +0 -6
- data/lib/pry/config/behavior.rb +0 -139
- data/lib/pry/config/convenience.rb +0 -25
- data/lib/pry/config/default.rb +0 -161
- data/lib/pry/history_array.rb +0 -121
- data/lib/pry/plugins.rb +0 -103
- data/lib/pry/rbx_path.rb +0 -22
- data/lib/pry/rubygem.rb +0 -82
- data/lib/pry/terminal.rb +0 -79
- data/lib/pry/test/helper.rb +0 -170
data/lib/pry/commands/ls.rb
CHANGED
@@ -1,114 +1,135 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
2
3
|
class Pry
|
3
|
-
class Command
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
4
|
+
class Command
|
5
|
+
class Ls < Pry::ClassCommand
|
6
|
+
DEFAULT_OPTIONS = {
|
7
|
+
heading_color: :bright_blue,
|
8
|
+
public_method_color: :default,
|
9
|
+
private_method_color: :blue,
|
10
|
+
protected_method_color: :blue,
|
11
|
+
method_missing_color: :bright_red,
|
12
|
+
local_var_color: :yellow,
|
13
|
+
pry_var_color: :default, # e.g. _, pry_instance, _file_
|
14
|
+
instance_var_color: :blue, # e.g. @foo
|
15
|
+
class_var_color: :bright_blue, # e.g. @@foo
|
16
|
+
global_var_color: :default, # e.g. $CODERAY_DEBUG, $eventmachine_library
|
17
|
+
builtin_global_color: :cyan, # e.g. $stdin, $-w, $PID
|
18
|
+
pseudo_global_color: :cyan, # e.g. $~, $1..$9, $LAST_MATCH_INFO
|
19
|
+
constant_color: :default, # e.g. VERSION, ARGF
|
20
|
+
class_constant_color: :blue, # e.g. Object, Kernel
|
21
|
+
exception_constant_color: :magenta, # e.g. Exception, RuntimeError
|
22
|
+
unloaded_constant_color: :yellow, # Any constant that is still in .autoload? state
|
23
|
+
separator: " ",
|
24
|
+
ceiling: [Object, Module, Class]
|
25
|
+
}.freeze
|
26
|
+
|
27
|
+
match 'ls'
|
28
|
+
group 'Context'
|
29
|
+
description 'Show the list of vars and methods in the current scope.'
|
30
|
+
command_options shellwords: false, interpolate: false
|
31
|
+
|
32
|
+
banner <<-'BANNER'
|
33
|
+
Usage: ls [-m|-M|-p|-pM] [-q|-v] [-c|-i] [Object]
|
34
|
+
ls [-g] [-l]
|
35
|
+
|
36
|
+
ls shows you which methods, constants and variables are accessible to Pry. By
|
37
|
+
default it shows you the local variables defined in the current shell, and any
|
38
|
+
public methods or instance variables defined on the current object.
|
39
|
+
|
40
|
+
The colours used are configurable using Pry.config.ls.*_color, and the separator
|
41
|
+
is Pry.config.ls.separator.
|
42
|
+
|
43
|
+
Pry.config.ls.ceiling is used to hide methods defined higher up in the
|
44
|
+
inheritance chain, this is by default set to [Object, Module, Class] so that
|
45
|
+
methods defined on all Objects are omitted. The -v flag can be used to ignore
|
46
|
+
this setting and show all methods, while the -q can be used to set the ceiling
|
47
|
+
much lower and show only methods defined on the object or its direct class.
|
48
|
+
|
49
|
+
Also check out `find-method` command (run `help find-method`).
|
50
|
+
BANNER
|
51
|
+
|
52
|
+
def options(opt)
|
53
|
+
opt.on :m, :methods, "Show public methods defined on the Object"
|
54
|
+
opt.on :M, "instance-methods", "Show public methods defined in a " \
|
55
|
+
"Module or Class"
|
56
|
+
opt.on :p, :ppp, "Show public, protected (in yellow) and private " \
|
57
|
+
"(in green) methods"
|
58
|
+
opt.on :q, :quiet, "Show only methods defined on object.singleton_class " \
|
59
|
+
"and object.class"
|
60
|
+
opt.on :v, :verbose, "Show methods and constants on all super-classes " \
|
61
|
+
"(ignores Pry.config.ls.ceiling)"
|
62
|
+
opt.on :g, :globals, "Show global variables, including those builtin to " \
|
63
|
+
"Ruby (in cyan)"
|
64
|
+
opt.on :l, :locals, "Show hash of local vars, sorted by descending size"
|
65
|
+
opt.on :c, :constants, "Show constants, highlighting classes (in blue), " \
|
66
|
+
"and exceptions (in purple).\n" \
|
67
|
+
"#{' ' * 32}Constants that are pending autoload? " \
|
68
|
+
"are also shown (in yellow)"
|
69
|
+
opt.on :i, :ivars, "Show instance variables (in blue) and class " \
|
70
|
+
"variables (in bright blue)"
|
71
|
+
opt.on :G, :grep, "Filter output by regular expression", argument: true
|
72
|
+
|
73
|
+
if Object.respond_to?(:deprecate_constant)
|
74
|
+
opt.on :d, :dconstants, "Show deprecated constants"
|
75
|
+
end
|
76
|
+
|
77
|
+
return unless Helpers::Platform.jruby?
|
78
|
+
|
79
|
+
opt.on :J, "all-java", "Show all the aliases for methods from java " \
|
80
|
+
"(default is to show only prettiest)"
|
67
81
|
end
|
68
|
-
end
|
69
82
|
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
83
|
+
# Exclude -q, -v and --grep because they,
|
84
|
+
# don't specify what the user wants to see.
|
85
|
+
def no_user_opts?
|
86
|
+
!(opts[:methods] || opts['instance-methods'] || opts[:ppp] ||
|
87
|
+
opts[:globals] || opts[:locals] || opts[:constants] || opts[:ivars])
|
88
|
+
end
|
76
89
|
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
+
def process
|
91
|
+
@interrogatee = args.empty? ? target_self : target.eval(args.join(' '))
|
92
|
+
raise_errors_if_arguments_are_weird
|
93
|
+
ls_entity = LsEntity.new(
|
94
|
+
interrogatee: @interrogatee,
|
95
|
+
no_user_opts: no_user_opts?,
|
96
|
+
opts: opts,
|
97
|
+
args: args,
|
98
|
+
pry_instance: pry_instance
|
99
|
+
)
|
100
|
+
|
101
|
+
pry_instance.pager.page ls_entity.entities_table
|
102
|
+
end
|
90
103
|
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
[
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
+
private
|
105
|
+
|
106
|
+
def error_list
|
107
|
+
any_args = args.any?
|
108
|
+
# rubocop:disable Style/CaseEquality
|
109
|
+
non_mod_interrogatee = !(Module === @interrogatee)
|
110
|
+
# rubocop:enable Style/CaseEquality
|
111
|
+
[
|
112
|
+
['-l does not make sense with a specified Object', :locals, any_args],
|
113
|
+
['-g does not make sense with a specified Object', :globals, any_args],
|
114
|
+
['-q does not make sense with -v', :quiet, opts.present?(:verbose)],
|
115
|
+
[
|
116
|
+
'-M only makes sense with a Module or a Class', 'instance-methods',
|
117
|
+
non_mod_interrogatee
|
118
|
+
],
|
119
|
+
[
|
120
|
+
'-c only makes sense with a Module or a Class', :constants,
|
121
|
+
any_args && non_mod_interrogatee
|
122
|
+
]
|
123
|
+
]
|
124
|
+
end
|
104
125
|
|
105
|
-
|
106
|
-
|
107
|
-
|
126
|
+
def raise_errors_if_arguments_are_weird
|
127
|
+
error_list.each do |message, option, invalid_expr|
|
128
|
+
raise Pry::CommandError, message if opts.present?(option) && invalid_expr
|
129
|
+
end
|
108
130
|
end
|
109
131
|
end
|
110
132
|
|
133
|
+
Pry::Commands.add_command(Pry::Command::Ls)
|
111
134
|
end
|
112
|
-
|
113
|
-
Pry::Commands.add_command(Pry::Command::Ls)
|
114
135
|
end
|
data/lib/pry/commands/nesting.rb
CHANGED
@@ -1,25 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
class Pry
|
2
|
-
class Command
|
3
|
-
|
4
|
-
|
5
|
-
|
4
|
+
class Command
|
5
|
+
class Nesting < Pry::ClassCommand
|
6
|
+
match 'nesting'
|
7
|
+
group 'Navigating Pry'
|
8
|
+
description 'Show nesting information.'
|
6
9
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
+
banner <<-'BANNER'
|
11
|
+
Show nesting information.
|
12
|
+
BANNER
|
10
13
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
14
|
+
def process
|
15
|
+
output.puts 'Nesting status:'
|
16
|
+
output.puts '--'
|
17
|
+
pry_instance.binding_stack.each_with_index do |obj, level|
|
18
|
+
if level == 0
|
19
|
+
output.puts "#{level}. #{Pry.view_clip(obj.eval('self'))} (Pry top level)"
|
20
|
+
else
|
21
|
+
output.puts "#{level}. #{Pry.view_clip(obj.eval('self'))}"
|
22
|
+
end
|
19
23
|
end
|
20
24
|
end
|
21
25
|
end
|
22
|
-
end
|
23
26
|
|
24
|
-
|
27
|
+
Pry::Commands.add_command(Pry::Command::Nesting)
|
28
|
+
end
|
25
29
|
end
|
data/lib/pry/commands/play.rb
CHANGED
@@ -1,103 +1,113 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
class Pry
|
2
|
-
class Command
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
4
|
+
class Command
|
5
|
+
class Play < Pry::ClassCommand
|
6
|
+
match 'play'
|
7
|
+
group 'Editing'
|
8
|
+
description 'Playback a string variable, method, line, or file as input.'
|
9
|
+
|
10
|
+
banner <<-'BANNER'
|
11
|
+
Usage: play [OPTIONS] [--help]
|
12
|
+
|
13
|
+
The play command enables you to replay code from files and methods as if they
|
14
|
+
were entered directly in the Pry REPL.
|
15
|
+
|
16
|
+
play --lines 149..153 # assumes current context
|
17
|
+
play -i 20 --lines 1..3 # assumes lines of the input expression at 20
|
18
|
+
play -o 4 # the output of an expression at 4
|
19
|
+
play Pry#repl -l 1..-1 # play the contents of Pry#repl method
|
20
|
+
play -e 2 # play from specified line until end of valid expression
|
21
|
+
play hello.rb # play a file
|
22
|
+
play Rakefile -l 5 # play line 5 of a file
|
23
|
+
play -d hi # play documentation of hi method
|
24
|
+
play hi --open # play hi method and leave it open
|
25
|
+
|
26
|
+
https://github.com/pry/pry/wiki/User-Input#wiki-Play
|
27
|
+
BANNER
|
28
|
+
|
29
|
+
def options(opt)
|
30
|
+
CodeCollector.inject_options(opt)
|
31
|
+
|
32
|
+
opt.on :open, 'Plays the selected content except the last line. Useful' \
|
33
|
+
' for replaying methods and leaving the method definition' \
|
34
|
+
' "open". `amend-line` can then be used to' \
|
35
|
+
' modify the method.'
|
36
|
+
|
37
|
+
opt.on :e, :expression=, 'Executes until end of valid expression', as: Integer
|
38
|
+
opt.on :p, :print, 'Prints executed code'
|
39
|
+
end
|
37
40
|
|
38
|
-
|
39
|
-
|
41
|
+
def process
|
42
|
+
@cc = CodeCollector.new(args, opts, pry_instance)
|
40
43
|
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
+
perform_play
|
45
|
+
show_input
|
46
|
+
end
|
44
47
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
48
|
+
def perform_play
|
49
|
+
eval_string << content_after_options
|
50
|
+
run "fix-indent"
|
51
|
+
end
|
52
|
+
|
53
|
+
def show_input
|
54
|
+
return unless opts.present?(:print)
|
55
|
+
return unless Pry::Code.complete_expression?(eval_string)
|
49
56
|
|
50
|
-
|
51
|
-
if opts.present?(:print) or !Pry::Code.complete_expression?(eval_string)
|
52
|
-
run "show-input"
|
57
|
+
run 'show-input'
|
53
58
|
end
|
54
|
-
end
|
55
59
|
|
60
|
+
def content_after_options
|
61
|
+
if opts.present?(:open)
|
62
|
+
restrict_to_lines(content, (0..-2))
|
63
|
+
elsif opts.present?(:expression)
|
64
|
+
content_at_expression
|
65
|
+
else
|
66
|
+
content
|
67
|
+
end
|
68
|
+
end
|
56
69
|
|
57
|
-
|
58
|
-
|
59
|
-
restrict_to_lines(content, (0..-2))
|
60
|
-
elsif opts.present?(:expression)
|
61
|
-
content_at_expression
|
62
|
-
else
|
63
|
-
content
|
70
|
+
def content_at_expression
|
71
|
+
code_object.expression_at(opts[:expression])
|
64
72
|
end
|
65
|
-
end
|
66
73
|
|
67
|
-
|
68
|
-
|
69
|
-
|
74
|
+
def code_object
|
75
|
+
Pry::Code.new(content)
|
76
|
+
end
|
70
77
|
|
71
|
-
|
72
|
-
|
73
|
-
|
78
|
+
def should_use_default_file?
|
79
|
+
!args.first && !opts.present?(:in) && !opts.present?(:out)
|
80
|
+
end
|
74
81
|
|
75
|
-
|
76
|
-
|
77
|
-
|
82
|
+
def content
|
83
|
+
if should_use_default_file?
|
84
|
+
file_content
|
85
|
+
else
|
86
|
+
@cc.content
|
87
|
+
end
|
88
|
+
end
|
78
89
|
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
90
|
+
# The file to play from when no code object is specified.
|
91
|
+
# e.g `play --lines 4..10`
|
92
|
+
def default_file
|
93
|
+
file =
|
94
|
+
if target.respond_to?(:source_location)
|
95
|
+
target.source_location.first
|
96
|
+
else
|
97
|
+
target.eval("__FILE__")
|
98
|
+
end
|
99
|
+
file && File.expand_path(file)
|
84
100
|
end
|
85
|
-
end
|
86
101
|
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
end
|
102
|
+
def file_content
|
103
|
+
if !default_file || !File.exist?(default_file)
|
104
|
+
raise CommandError, "File does not exist! File was: #{default_file.inspect}"
|
105
|
+
end
|
92
106
|
|
93
|
-
def file_content
|
94
|
-
if default_file && File.exists?(default_file)
|
95
107
|
@cc.restrict_to_lines(File.read(default_file), @cc.line_range)
|
96
|
-
else
|
97
|
-
raise CommandError, "File does not exist! File was: #{default_file.inspect}"
|
98
108
|
end
|
99
109
|
end
|
100
|
-
end
|
101
110
|
|
102
|
-
|
111
|
+
Pry::Commands.add_command(Pry::Command::Play)
|
112
|
+
end
|
103
113
|
end
|
@@ -1,25 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
class Pry
|
2
|
-
class Command
|
3
|
-
|
4
|
-
|
5
|
-
|
4
|
+
class Command
|
5
|
+
class PryBacktrace < Pry::ClassCommand
|
6
|
+
match 'pry-backtrace'
|
7
|
+
group 'Context'
|
8
|
+
description 'Show the backtrace for the Pry session.'
|
6
9
|
|
7
|
-
|
8
|
-
|
10
|
+
banner <<-BANNER
|
11
|
+
Usage: pry-backtrace [OPTIONS] [--help]
|
9
12
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
+
Show the backtrace for the position in the code where Pry was started. This can
|
14
|
+
be used to infer the behavior of the program immediately before it entered Pry,
|
15
|
+
just like the backtrace property of an exception.
|
13
16
|
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
17
|
+
NOTE: if you are looking for the backtrace of the most recent exception raised,
|
18
|
+
just type: `_ex_.backtrace` instead.
|
19
|
+
See: https://github.com/pry/pry/wiki/Special-Locals
|
20
|
+
BANNER
|
18
21
|
|
19
|
-
|
20
|
-
|
22
|
+
def process
|
23
|
+
text = "#{bold('Backtrace:')}\n--\n#{pry_instance.backtrace.join("\n")}"
|
24
|
+
pry_instance.pager.page(text)
|
25
|
+
end
|
21
26
|
end
|
22
|
-
end
|
23
27
|
|
24
|
-
|
28
|
+
Pry::Commands.add_command(Pry::Command::PryBacktrace)
|
29
|
+
end
|
25
30
|
end
|
@@ -1,17 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
class Pry
|
2
|
-
class Command
|
3
|
-
|
4
|
-
|
5
|
-
|
4
|
+
class Command
|
5
|
+
class Version < Pry::ClassCommand
|
6
|
+
match 'pry-version'
|
7
|
+
group 'Misc'
|
8
|
+
description 'Show Pry version.'
|
6
9
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
+
banner <<-'BANNER'
|
11
|
+
Show Pry version.
|
12
|
+
BANNER
|
10
13
|
|
11
|
-
|
12
|
-
|
14
|
+
def process
|
15
|
+
output.puts "Pry version: #{Pry::VERSION} on Ruby #{RUBY_VERSION}."
|
16
|
+
end
|
13
17
|
end
|
14
|
-
end
|
15
18
|
|
16
|
-
|
19
|
+
Pry::Commands.add_command(Pry::Command::Version)
|
20
|
+
end
|
17
21
|
end
|
@@ -1,32 +1,38 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
class Pry
|
2
4
|
# N.B. using a regular expresion here so that "raise-up 'foo'" does the right thing.
|
3
|
-
class Command
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
5
|
+
class Command
|
6
|
+
class RaiseUp < Pry::ClassCommand
|
7
|
+
match(/raise-up(!?\b.*)/)
|
8
|
+
group 'Context'
|
9
|
+
description 'Raise an exception out of the current pry instance.'
|
10
|
+
command_options listing: 'raise-up'
|
11
|
+
|
12
|
+
banner <<-BANNER
|
13
|
+
Raise up, like exit, allows you to quit pry. Instead of returning a value
|
14
|
+
however, it raises an exception. If you don't provide the exception to be
|
15
|
+
raised, it will use the most recent exception (in pry `_ex_`).
|
16
|
+
|
17
|
+
When called as raise-up! (with an exclamation mark), this command raises the
|
18
|
+
exception through any nested prys you have created by "cd"ing into objects.
|
19
|
+
|
20
|
+
raise-up "get-me-out-of-here"
|
21
|
+
|
22
|
+
# This is equivalent to the command above.
|
23
|
+
raise "get-me-out-of-here"
|
24
|
+
raise-up
|
25
|
+
BANNER
|
26
|
+
|
27
|
+
def process
|
28
|
+
return _pry.pager.page help if captures[0] =~ /(-h|--help)\b/
|
29
|
+
|
30
|
+
# Handle 'raise-up', 'raise-up "foo"', 'raise-up RuntimeError, 'farble'
|
31
|
+
# in a rubyesque manner
|
32
|
+
target.eval("pry_instance.raise_up#{captures[0]}")
|
33
|
+
end
|
28
34
|
end
|
29
|
-
end
|
30
35
|
|
31
|
-
|
36
|
+
Pry::Commands.add_command(Pry::Command::RaiseUp)
|
37
|
+
end
|
32
38
|
end
|