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 An ActiveRecord mixin to allow a model object to be populated with the details of a product listed on amazon. Uses the Amazon/Ruby library.
Description loads_from_amazon is an ActiveRecord Mixin that works with the Ruby/Amazon library to let you populate an ActiveRecord object with the details of a product listed on amazon. In the README I use the following example: class Book < ActiveRecord::Base acts_as_amazon maps_to_amazon_attribute :authorlist => 'authors', :combine => ';' maps_to_amazon_attribute :title => 'product_name' maps_to_amazon_attribute :isbn => 'asin' maps_to_amazon_attribute :publisher => 'manufacturer' maps_to_amazon_attribute :pubdate => 'release_date' end @book = Book.load_from_amazon(isbn) # Loads but does not save @otherbook = Book.load_from_amazon!(other_isbn) # Loads data and saves to database
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