This post is part of a series which documents the vim-ruby-refactoring plugin.
Extract to Let
This is an RSpec specific refactoring which will extract an initialisation line and create a let method for you.
Example
Before refactoring:
Move the cursor on to the line you wish to extract
Hit your **
After refactoring:
The let method is created above the it block, using the initialisation line - account = Account.new.
rel is the default binding for this refactoring, think Refactor Extract Let.