could not find xxx generator

阅读更多

学习了一下ror,使用其中的脚手架命令scafflod,想感觉一下ror告诉我的轻松、美好的开发感觉,但是却报了一个错误。命令错误如下:

java 代码
  1. F:\RadRails\workspace\depot>ruby script/generate scaffold product admin   
  2.       exists  app/controllers/   
  3.       exists  app/helpers/   
  4.       create  app/views/admin   
  5.       exists  app/views/layouts/   
  6.       exists  test/functional/   
  7.   dependency  model   
  8.       exists    app/models/   
  9.       exists    test/unit/   
  10.       exists    test/fixtures/   
  11.       create    app/models/product.rb   
  12.    identical    test/unit/product_test.rb   
  13.    identical    test/fixtures/products.yml   
  14. Couldn't find 'product' generator  

 

环境:ruby:186-25,db:postgresql8.1,driver:postgres-0.7.1

database.yml:

ruby 代码
  1. development:   
  2.   adapter: postgresql   
  3.   database: depot_development   
  4.   username: sa   
  5.   password: nightwind   
  6.   host: localhost   
  7.   encoding: UTF8  

通过radrails的data视图可以查看数据库里的表,并能做select。

不知道是什么问题,难道是因为postgresql里有多个服务器导致的?(通过pgadmin查看有2个server)

先试下mysql,看看会不会有类似问题。

你可能感兴趣的:(Rails,敏捷开发,MySQL,PostgreSQL,Access)