scttnlsn/dandelion

View on GitHub
lib/dandelion/adapter/noop.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Dandelion
  module Adapter
    class NoOpAdapter < Adapter::Base
      def read(path)
      end
      
      def write(path, data)
      end

      def delete(path)
      end

      def symlink(path, data)
      end
    end
  end
end