Is your plugin hosted on GitHub? Make sure to press the "fetch" button next to the repository field to fetch your plugin's info from GitHub rather than typing it all in.
Repository
Name
Home Page
Short description Keeps specified attributes of a model out of to_xml. Does so by aliasing to_xml, and automatically sending in the correct :excludes to the original to_xml method
Description Keeps specified attributes of a model out of to_xml. Do so by aliasing to_xml, and automatically sending in the correct :excludes to the original to_xml method, e.g. :excludes => [:attr1, :attr2, ...] h2. Usage An ActiveRecord Model: <pre> class Model < ActiveRecord::Base include XmlProtected # Required because it's a gemmefied plugin xml_protected :attr1, :attr2, :attr3 end </pre> You can also access these attributes from the added class method: protected_xml_attributes h3. In Conjunction with attr_protected <pre> class Model < ActiveRecord::Base include XmlProtected # Required because it's a gemmefied plugin attr_protected :attr1, :attr2, :attr3 xml_protected :attr1, :attr2, :attr3 end </pre>
Description format RDoc MarkDown Textile
License Ruby's Rails' (MIT) GPL LGPL BSD Apache Artistic PublicDomain BSD-type Free-Trial Free-but-Restricted OpenSource Proprietary Shareware Source-available-proprietary Commercial
Category Assets Controllers Internationalization Misc. Enhancements Model Rails Engines Searching and Queries Security Statistics and Logs Testing View Extensions