mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
22 lines
433 B
Ruby
22 lines
433 B
Ruby
module Docs
|
|
class NullStore < AbstractStore
|
|
def initialize
|
|
super '/'
|
|
end
|
|
|
|
private
|
|
|
|
def nil(*args)
|
|
nil
|
|
end
|
|
|
|
alias_method :read_file, :nil
|
|
alias_method :create_file, :nil
|
|
alias_method :update_file, :nil
|
|
alias_method :delete_file, :nil
|
|
alias_method :file_exist?, :nil
|
|
alias_method :file_mtime, :nil
|
|
alias_method :file_size, :nil
|
|
alias_method :list_files, :nil
|
|
end
|
|
end
|