README.rdoc in plist4r-0.1.0 vs README.rdoc in plist4r-0.1.1

- old
+ new

@@ -8,10 +8,12 @@ gem install plist4r == Quick Start + require 'plist4r' + Plist4r::Config.default_dir "/Library/LaunchDaemons" filename = "com.github.myservice.plist" p = Plist4r.open(filename) p.plist_type @@ -63,24 +65,24 @@ == More Examples module ::Plist4r::Backend::MyPlistReaderWriter # implement some plist4r api calls here end - + # append my backend to the end of the list Plist4r::Config[:backends] << :my_plist_reader_writer # or to the front of the list (executes first) Plist4r::Config[:backends].insert 0 :my_plist_reader_writer - + # The default directory to load / save files from Plist4r::Config.default_path "/Library/Cars" car = Plist4r.new("car.plist") car.load - + car.file_format :binary # car.plist_type :car # not implemented *yet* car.save @@ -119,10 +121,34 @@ == Notes on Patches/Pull Requests * Fork the project, and create a topic branch as per {these instructions}[http://wiki.opscode.com/display/opscode/Working+with+Git]. * Make your feature addition or bug fix. * Include documentation for it. -* Include a regression test for it. So I don't break it in a future version unintentionally. +* Include a regression test for it. So I dont break it in a future version unintentionally. +== Contributors + +Popen4 +* Ara T Howard + +ActiveSupport::OrderedHash +* Copyright (c) 2005 David Hansson, +* Copyright (c) 2007 Mauricio Fernandez, Sam Stephenson +* Copyright (c) 2008 Steve Purcell, Josh Peek +* Copyright (c) 2009 Christoffer Sawicki + +Mixlib::Config +* Author:: Adam Jacob +* Author:: Nuo Yan +* Author:: Christopher Brown +* Copyright:: Copyright (c) 2008 Opscode, Inc. + +Backends... + +Haml, Libxml4r, RubyCocoa +* Dreamcat4 + == Copyright Copyright (c) 2010 Dreamcat4. See LICENSE for details. + +