You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using If I include the gem(s) in the Gemfile everything works as expected: gem 'devise', '4.2.0' gem 'devise_ldap_authenticatable', '0.8.5'
... however, if I include the gem(s) in my engines .gemspec file: Gem::Specification.new do |s| ... s.add_dependency "devise", "4.2.0" s.add_dependency "devise_ldap_authenticatable", "0.8.5" ... end
I get the following exception:
Exiting
/Users/jwilliam/is_web_engine/config/initializers/devise.rb:6:in block in <top (required)>': undefined method ldap_create_user=' for Devise:Module (NoMethodError)
What am I doing wrong?
Thanks,
Jon.
The text was updated successfully, but these errors were encountered:
I am using If I include the gem(s) in the Gemfile everything works as expected:
gem 'devise', '4.2.0'
gem 'devise_ldap_authenticatable', '0.8.5'
... however, if I include the gem(s) in my engines .gemspec file:
Gem::Specification.new do |s|
...
s.add_dependency "devise", "4.2.0"
s.add_dependency "devise_ldap_authenticatable", "0.8.5"
...
end
I get the following exception:
What am I doing wrong?
Thanks,
Jon.
The text was updated successfully, but these errors were encountered: