喂! https://github.com/breakpointer/尝试使用, 当我试图写rails生成测量员 我收到这个:COuld找不到发电机测量员了!
你可以帮助我吗?使用rails 3,ruby 1.8.7
答案 0 :(得分:5)
您使用的是rails3分支吗?
我遇到了与您相同的异常,但通过在我的Gemfile中添加以下内容来修复它:
gem 'surveyor', :git => 'git://github.com/breakpointer/surveyor.git', :branch => 'rails3'
gem 'formtastic'
答案 1 :(得分:2)
我在Rail 3.0.9上安装时出现问题
gem 'surveyor', :git => 'https://github.com/NUBIC/surveyor.git', :branch => 'rails3'
gem 'formtastic'
给我的formtastic 2.0.0导致此错误 - >未初始化的常量Formtastic :: SemanticFormHelper
发现一篇关于升级的博客文章......但那将是另一天:-) http://richardhulse.blogspot.com/2011/06/upgrading-to-formtastic-20.html
然后我降级到1.2.4并且能够生成测量员
gem 'surveyor', :git => 'https://github.com/NUBIC/surveyor.git', :branch => 'rails3'
gem 'formtastic', '~> 1.2.4'
答案 2 :(得分:1)
关于github的一则说明“主要分支机构在NUBIC / Surveyor。这不再是活跃的开发分支!”所以你可能想要使用
gem 'surveyor', :git => 'git://github.com/NUBIC/surveyor.git', :branch => 'rails3'
gem 'formtastic'
代替。
此外,生成这些东西的实际命令是
rails generate surveyor:install