Sha256: 851fe1868361850f1a41fcd8038f82a08a51c0ad8a39a6e2edc68fc4d1bef564

Contents?: true

Size: 560 Bytes

Versions: 1

Compression:

Stored size: 560 Bytes

Contents

require_relative 'cc_delegate/dir_class_methods'
require_relative 'cc_delegate/dir_instance_methods'
require_relative 'cc_delegate/file_class_methods'
require_relative 'cc_delegate/file_instance_methods'

module VirtFS::CamcorderFS # rubocop:disable Style/ClassAndModuleChildren
  class CcDelegate
    include DirClassMethods
    include DirInstanceMethods
    include FileClassMethods
    include FileInstanceMethods

    def instance_call(method, instance_handle, *args)
      instance_handle.send(method, *args)
    end
    private :instance_call
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
virtfs-camcorderfs-0.0.1 lib/virtfs/camcorderfs/cc_delegate.rb