Just started exploring ActiveScaffold today with Rails 2.3.2. I'm not seeing any ActiveScaffold UI... am I missing something?
Here's what I did: > rails active_scaffold > cd active_scaffold > ./script/generate scaffold Task title:string notes:text complete:boolean > rake db:migrate > script/plugin install git://github.com/activescaffold/active_scaffold.git edited views/layouts/tasks.html.erb, adding the javascript include and active_scaffold_includes lines to the bottom of the head section: <head> <meta http-equiv="content-type" content="text/html;charset=UTF-8" /> <title>Tasks: <%= controller.action_name %></title> <%= stylesheet_link_tag 'scaffold' %> <%= javascript_include_tag :defaults %> <%= active_scaffold_includes %> </head> then modified tasks_controller.rb adding: active_scaffold :task then started the server, went to http://localhost:3000/tasks and saw nothing. The tutorial seems to imply that I would see something, but maybe I need to configure something... Can someone please point me in the right direction? Thanks, Sarah --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "ActiveScaffold : Ruby on Rails plugin" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/activescaffold?hl=en -~----------~----~----~----~------~----~------~--~---
