22 lines
377 B
Ruby
Raw Normal View History

2016-08-23 10:18:28 +02:00
#!/usr/bin/env ruby
#
# = 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'
2016-08-23 23:36:00 +02:00
require_relative 'plist/generator'
require_relative 'plist/parser'
2016-08-23 10:18:28 +02:00
module Plist
VERSION = '3.1.0'
end