class TextEditor::Clipboard

Private Instance Methods

adapter() click to toggle source
   # File lib/text_editor/clipboard.rb
10 def adapter
11   @adapter ||= type.new
12 end
type() click to toggle source
   # File lib/text_editor/clipboard.rb
14 def type
15   self.class.const_get(editor.os.type)
16 end