Sha256: a078a7c30f9ae34dc18c7a827a07b5c9c3b4da3b3b7232928cb895221a3d46e1

Contents?: true

Size: 850 Bytes

Versions: 1

Compression:

Stored size: 850 Bytes

Contents

module XDG

  def data_home
    data.home
  end

  def config_home
    config.home
  end

  def cache_home
    cache.home
  end


  def data_dirs
    data.home
  end

  def config_dirs
    config.dirs
  end

  #def cache_dirs
  #  cache.dirs
  #end


  def data_select(*args, &block)
    data.select(*args, &block)
  end

  def config_select(*args, &block)
    config.select(*args, &block)
  end

  def cache_select(*args, &block)
    cache.select(*args, &block)
  end


  def data_find(*args, &block)
    data.find(*args, &block)
  end

  def config_find(*args, &block)
    config.find(*args, &block)
  end

  def cache_find(*args, &block)
    cache.find(*args, &block)
  end


  def config_work
    config.work
  end

  def cache_work
    cache.work
  end

end

# Copyright (c) 2008,2009 Thomas Sawyer
# Distributed under the terms of the LGPL v3.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
xdg-1.0.0 lib/xdg/compat.rb