class AutomateIt::EditManager::Simple
EditManager::Simple¶ ↑
Provides a way to edit files and strings.
See documentation for EditSession.
Public Instance Methods
edit(*opts, &block)
click to toggle source
Creates an editing session. See documentation for EditSession#edit.
# File lib/automateit/edit_manager.rb, line 33 def edit(*opts, &block) AutomateIt::EditManager::EditSession.new(:interpreter => @interpreter).edit(*opts, &block) end