[jQuery] Managing plugin version updates/uploads
I have been writing a jQuery plugin generator to scaffold a plugin and
have released this a gem for rubyists (gem install jqueryplugingen).
I now want to be able to manage the release of the plugin via rake
tasks (ie like ruby gems - eg Hoe). I have searched this list and
googled looking for an API to plugins.jquery.com. I must have missed
something because it appears that everyone publishes manually.
Can someone help me out with an API for publishing? I am happy to
writing a ruby binding.
eg:
jqp.new('jquery.plugin') do |p|
p.developer('toddb', 'todd@...')
p.changes = p.paragraphs_of("History.txt",
0..1).join("\n\n")
p.jqueryplugin_name = 'jqueryplugingen'
p.description = "Generate the structure of jquery
plugins easily. "
end
so, then
rake release VERSION=0.1.0
I, of course, humbly apologise if this is a dumb re-posting or simply
dumb
--tb