Sha256: ad357429fea482ed527b99c393ed54ecac8ba328c56be12e09deb5a4861cc15a
Contents?: true
Size: 557 Bytes
Versions: 4
Compression:
Stored size: 557 Bytes
Contents
module Redcar class Document module Controller def initialize(document) @document = document end def document @document end module ModificationCallbacks def before_modify(start_offset, end_offset, text) raise "not implemented" end def after_modify raise "not implemented" end end module NewlineCallback def after_newline(line_ix) raise "not implemented" end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems