class Kachikachi::Patch
Attributes
body[RW]
file_name[RW]
Public Class Methods
new(file_name, content, options)
click to toggle source
# File lib/kachikachi/patch.rb, line 7 def initialize(file_name, content, options) @file_name = file_name || '' @body = PatchBody.new(content, options) end