I mostly figured it out. I ended up dropping a copy of the git
streamlined source under vendor/plugins/streamlined and then running
the rake tasks. From memory, this is what I did...
rails -d mysql learnsl
cd learnsl
rake streamlined:install_files
rake doc:plugins:streamlined
rake db:create
ruby script/generate ... to create model and controller etc.
rake streamlined:model MODEL=Model
...where Model is the model name to create the ui file for. If you use
model rather than Model it generates lots of fun ruby errors. This
really should be added to the desc line of the rake task def
Updated my controller to...
class ThingsController < ActionController::Base
layout "streamlined"
acts_as_streamlined
end
After looking at the documentation I'm leaning towards not using the
plugin. I really don't feel like wading through a bunch of ruby source
on top of everything else I'm doing to figure out how this thing works
right now. The plugin looks promising though. Having even a tad bit
more documentation would have saved me hours of tinkering and I don't
really feel like continuing that experience at this point in trying to
get streamlined to do what really want.
self