22 lines
387 B
Ruby
Raw Normal View History

2017-04-28 20:51:07 +02:00
# encoding: utf-8
2016-08-23 10:18:28 +02:00
# = plist
#
# This is the main file for plist. Everything interesting happens in
# Plist and Plist::Emit.
#
# Copyright 2006-2010 Ben Bleything and Patrick May
# Distributed under the MIT License
#
require 'base64'
require 'cgi'
require 'stringio'
require_relative 'plist/generator'
require_relative 'plist/parser'
require_relative 'plist/version'
2016-08-23 10:18:28 +02:00
module Plist
end