File: xdg.rb

package info (click to toggle)
ruby-xdg 9.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 136 kB
  • sloc: ruby: 199; makefile: 3
file content (18 lines) | stat: -rw-r--r-- 326 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

require "xdg/cache"
require "xdg/config"
require "xdg/data"
require "xdg/environment"
require "xdg/pair"
require "xdg/paths/combined"
require "xdg/paths/directory"
require "xdg/paths/home"
require "xdg/state"

# Main namespace.
module XDG
  DELIMITER = "="

  def self.new = Environment.new
end