class Gitmain::TextBlob

Public Instance Methods

text() click to toggle source
# File lib/gitmain/text_blob.rb, line 5
def text
  @text ||= _blob&.text
end
text=(value) click to toggle source
# File lib/gitmain/text_blob.rb, line 9
def text=(value)
  changed_attributes[:text] = text
  @text = value
end