ralli / bz2redmine

Bugzilla to Redmine migration script
Other
13 stars 8 forks source link

bz2redmine gives "NameError: uninitialized constant BugzillaToRedmine::Net" due to missing net-ldap gem #13

Open bogzilla opened 9 years ago

bogzilla commented 9 years ago

bz2redmine fails with a "NameError: uninitialized constant BugzillaToRedmine::Net" when migrating LDAP users from Bugzilla to Redmine, i.e. settings.rb is configured as follows:

The fix was to edit bz2redmine.rb to require the net-ldap gem, e.g.: ... require "rubygems" require "mysql" require "net/ldap" ...

Could someone please implement this fix?

Thanks!

bogzilla commented 9 years ago

Of course the net-ldap gem also needs to be installed :) ...

gem install net-ldap