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 Acts As Notifiable enables your Rails app to send notification to Jabber client.
Description Acts As Notifiable enables your Rails app to send notification to Jabber client. ###Install $script/plugin install http://svn.s21g.com/public/rails/plugins/acts_as_notifiable/ ###Requirements XMPP4R(http://xmpp4r.rubyforge.org/) $sudo gem install xmpp4r ###Example Please consult the README for details. http://svn.s21g.com/public/rails/plugins/acts_as_notifiable/README 1. Add config file to your Rails app. #{RAILS_ROOT}/config/acts_as_notifiable.yml to: recipients: you@gmail.com me@gmail.com from: id: your_notify_account@gmail.com password: pass connect: talk.google.com 2. Add +acts_as_notifiable+ to the Model class: class Post < ActiveRecord::Base acts_as_notifiable :callback => :after_create, :message => Proc.new {|o| "[#{o.class.name}]##{o.id} #{o.body}"}, :recipients => "aaa@gmail.com bbb@gmail.com" end
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