Class: T::Editor
- Inherits:
-
Object
- Object
- T::Editor
- Defined in:
- lib/t/editor.rb
Class Method Summary collapse
Class Method Details
.edit(path) ⇒ Object
20 21 22 |
# File 'lib/t/editor.rb', line 20 def edit(path) system(Shellwords.join([editor, path])) end |
.editor ⇒ Object
24 25 26 |
# File 'lib/t/editor.rb', line 24 def editor ENV["VISUAL"] || ENV["EDITOR"] || system_editor end |
.gets ⇒ Object
7 8 9 10 11 12 13 14 |
# File 'lib/t/editor.rb', line 7 def gets file = tempfile edit(file.path) File.read(file).strip ensure file.close file.unlink end |
.system_editor ⇒ Object
28 29 30 |
# File 'lib/t/editor.rb', line 28 def system_editor /mswin|mingw/.match?(RbConfig::CONFIG["host_os"]) ? "notepad" : "vi" end |
.tempfile ⇒ Object
16 17 18 |
# File 'lib/t/editor.rb', line 16 def tempfile Tempfile.new("TWEET_EDITMSG") end |