I’ve just released Lilu 0.1.3.
IT IS NOT BACKWARD COMPATIBLE WITH 0.1.2.
The changes are:
- New sub-nodes lookup syntax
You need to update your instructions in the following way. If you had something like:
update('#blog-entry').with :id => "blog-#{@blog.id}", 'a' => { :href => @blog.url }
you will need to rewrite it to something like
update('#blog-entry').with :id => "blog-#{@blog.id}", at('a') => { :href => @blog.url }
or
update('#blog-entry').with 'id' => "blog-#{@blog.id}", at('a') => { 'href' => @blog.url }
That means that now you can use both String and Symbol to refer attributes
- `self’ is deprecated in favor of `text’
You need to update your instructions as well. If you had something like:
update('#blog-entry').with at('a') => { :href => @url, self => @title }
you will need to rewrite it to:
update('#blog-entry').with at('a') => { :href => @url, text => @title }
You can use Lilu either as a plugin at svn://dev.railsware.com/lilu/lilu/tags/0.1.3 or svn://dev.railsware.com/lilu/lilu/trunk (be cautious when on trunk!) or from gem (lilu, -v 0.1.3 or just the latest version).
If you need to stay on an old syntax for some reason, please use 0.1.2 (svn://dev.railsware.com/lilu/lilu/tags/0.1.3 or gem install lilu -v 0.1.2).




