Rails 3 -> Could not find generator surveyor
Hey! https://github.com/breakpointer/ trying to use, When i trying to write rails generate surveyor i receive this: COuld n开发者_运维知识库ot find generator surveyor!
could you help me?
using rails 3, ruby 1.8.7
Are you using the rails3 branch?
I was getting the same exception as you but fixed it by having the following in my Gemfile:
gem 'surveyor', :git => 'git://github.com/breakpointer/surveyor.git', :branch => 'rails3'
gem 'formtastic'
I had trouble with my installation on Rail 3.0.9
gem 'surveyor', :git => 'https://github.com/NUBIC/surveyor.git', :branch => 'rails3'
gem 'formtastic'
Gave my formtastic 2.0.0 resulting in this error -> uninitialized constant Formtastic::SemanticFormHelper
Found a blog post about upgrading...but that will be another day :-) http://richardhulse.blogspot.com/2011/06/upgrading-to-formtastic-20.html
I then downgraded to 1.2.4 and was able to generate surveyor
gem 'surveyor', :git => 'https://github.com/NUBIC/surveyor.git', :branch => 'rails3'
gem 'formtastic', '~> 1.2.4'
theres a note on github saying "The main branch is at NUBIC/Surveyor. This is no longer the active development branch!" so you might want to use
gem 'surveyor', :git => 'git://github.com/NUBIC/surveyor.git', :branch => 'rails3'
gem 'formtastic'
instead.
Also, the actual command to generate the stuff is
rails generate surveyor:install
精彩评论