mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 15:18:01 +00:00
Add Editing Code In Pry as a ruby til.
This commit is contained in:
@@ -103,6 +103,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
|
||||
- [Create an Array of Stringed Numbers](ruby/create-an-array-of-stringed-numbers.md)
|
||||
- [Destructuring Arrays In Blocks](ruby/destructuring-arrays-in-blocks.md)
|
||||
- [Disassemble Some Codes](ruby/disassemble-some-codes.md)
|
||||
- [Editing Code In Pry](ruby/editing-code-in-pry.md)
|
||||
- [Evaluating One-Off Commands](ruby/evaluating-one-off-commands.md)
|
||||
- [FactoryGirl Sequences](ruby/factory-girl-sequences.md)
|
||||
- [Finding The Source of Ruby Methods](ruby/finding-the-source-of-ruby-methods.md)
|
||||
|
||||
10
ruby/editing-code-in-pry.md
Normal file
10
ruby/editing-code-in-pry.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# Editing Code In Pry
|
||||
|
||||
[Pry](http://pryrepl.org/) provides an enhanced REPL experience for Ruby.
|
||||
One of the enhancements it provides is the ability to open your preferred
|
||||
editor within a pry session. This makes it easy to compose and edit
|
||||
multi-line blocks of code.
|
||||
|
||||
Try it out by typing `edit` within a pry session. Once you are ready, you
|
||||
can save the file which will prompt pry to interpret the contents of your
|
||||
file within the context of the pry session.
|
||||
Reference in New Issue
Block a user