AWSのservice.wsdlでTemplate is missingが・・・

本来、
http://localhost:3000/hoge/service.wsdl
wsdlが出るのですが、久々に会社のソースを家のPCにSVNから更新してみると
タイトルのエラーが・・・

Missing template ./script/../config/../app/views/hoge/wsdl.rhtml

どうもhoge_api.rbが以下のようになってるとおかしいみたい。Hogeはmodel

  api_method :get_hoge,
             :expects => [{:id => :int}],
             :returns => [Hoge]

でも以下では正常・・・

  api_method :get_hoge,
             :expects => [{:id => :int}],
             :returns => [:int]

一時間も悩んだ挙句・・・単なるDBにそのテーブルが存在してないだけでした。orz