
This reverts commit 3e4547f52e7ebec633f8bfefc8a396d944edf908, reversing changes made to 6edf9382bcc1240ad6f97c8b752cfe56cef9965d.
22 lines
387 B
Ruby
Executable File
22 lines
387 B
Ruby
Executable File
# encoding: utf-8
|
|
|
|
# = 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'
|
|
|
|
module Plist
|
|
end
|