Sha256: bad00e33bd5ea6fed7d5f8fcb5e08a23e7f566a5e0a32677b0f14fb3fd8a01d3

Contents?: true

Size: 249 Bytes

Versions: 1

Compression:

Stored size: 249 Bytes

Contents

require 'kachikachi/patch_body'

module Kachikachi
  class Patch
    attr_accessor :file_name, :body

    def initialize(file_name, content, options)
      @file_name = file_name || ''
      @body = PatchBody.new(content, options)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kachikachi-0.1.0 lib/kachikachi/patch.rb