devise and invitable plugin : how do you set the invitation_limit-Collection of common programming errors

My guess is that you are using the version of the devise_invitable gem that does not include “invitation_limit.” You will need to use at least v0.4.rc5 to get all the new coolness that the documentation talks about. It’s definitely a little confusing. Your Gemfile should look like this:

gem 'devise', '~>1.2.0'
gem 'devise_invitable', '~>0.4.rc5'

See here for a more in depth write-up about this issue with devise_invitable.

Originally posted 2013-11-09 21:10:00.