cselmer/delegate_cached

View on GitHub
lib/delegate_cached/installer.rb

Summary

Maintainability
A
0 mins
Test Coverage
module DelegateCached
  class Installer
    attr_reader :source, :target, :options

    def initialize(source, target, options)
      @source = source
      @target = target
      @options = options
    end
  end
end