module Xcodeproj

def self.read_plist(path)

TODO: Delete me (compatibility with Ruby 1.8.7 C ext bundle)
def self.read_plist(path)
  PlistHelper.read(path)
end

def self.write_plist(hash, path)

TODO: Delete me (compatibility with Ruby 1.8.7 C ext bundle)
def self.write_plist(hash, path)
  PlistHelper.write(hash, path)
end