AlbertGazizov/opatch

View on GitHub
lib/o_patch.rb

Summary

Maintainability
A
0 mins
Test Coverage
module OPatch
  require 'o_patch/patcher'

  def self.patch(entity, attributes, &block)
    Patcher.patch(entity, attributes, &block)
  end
end