Some feedback
Hi @brian-mann, first of all thank you for your screencasts :+1:
Regard for this rails-generators I think it'll be useful if this will be packed into the gem. So one can just add this gem in existed project and gain ability to use generators without cloning this code in the existing project.
It'll be more useful too if there were some flexibility to choose template engine(for example I prefer skim templates https://github.com/jfirebaugh/skim )
For that matter, will you maintain this in the future or it'll be better to create another gem that take into account things I wrote above?
And one more question - why do you use "list" view folder instead of "index"? If you really want REST rails like naming convention, it should be "index", "new", "edit" and etc, but not "list".
And by the way(IMHO) I think that template folder need to be took out into app/assets/templates so one can just set template by this code template: JST['items/items_index'] (almost like in rails templating) and not create template folder every time and navigating on it.