mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
Update show-file docs
This commit is contained in:
parent
503e6bb63f
commit
3b52fcb161
1 changed files with 6 additions and 6 deletions
|
@ -7,20 +7,20 @@ class Pry
|
||||||
description 'Export to a file using content from the REPL.'
|
description 'Export to a file using content from the REPL.'
|
||||||
|
|
||||||
banner <<-'BANNER'
|
banner <<-'BANNER'
|
||||||
Usage: save-file [OPTIONS] [FILE]
|
Usage: save-file [OPTIONS] --to [FILE]
|
||||||
|
|
||||||
Export to a file using content from the REPL.
|
Export to a file using content from the REPL.
|
||||||
|
|
||||||
save-file my_method ./hello.rb
|
save-file my_method --to hello.rb
|
||||||
save-file -i 1..10 ./hello.rb --append
|
save-file -i 1..10 --to hello.rb --append
|
||||||
save-file show-method ./my_command.rb
|
save-file show-method --to my_command.rb
|
||||||
save-file sample_file.rb --lines 2..10 ./output_file.rb
|
save-file sample_file.rb --lines 2..10 --to output_file.rb
|
||||||
BANNER
|
BANNER
|
||||||
|
|
||||||
def options(opt)
|
def options(opt)
|
||||||
CodeCollector.inject_options(opt)
|
CodeCollector.inject_options(opt)
|
||||||
|
|
||||||
opt.on :to=, "Select where content is to be saved"
|
opt.on :to=, "Specify the output file path"
|
||||||
opt.on :a, :append, "Append output to file"
|
opt.on :a, :append, "Append output to file"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue