ldaptic icon indicating copy to clipboard operation
ldaptic copied to clipboard

Object-oriented schema-aware LDAP wrapper for Ruby

Results 10 ldaptic issues
Sort by recently updated
recently updated
newest added

Right now, you can assign an arbitrary collection of strings to `objectClass`, but the internals of Ldaptic assume you have only added or removed an auxiliary class. And if you...

Make it possible to entry subclass extensions in separate files and have them be automatically loaded alongside the namespace in Rails.

The logic is basically there. The API needs to be fleshed out a bit.

ActiveModel

Should just be a couple of includes.

ActiveModel

This isn't as simple as it seems, as LDAP attributes are inherently multivalued, and Active Model assumes single values. Also, does anyone actually need validations above and beyond what the...

ActiveModel

Step 1 is a simple criteria constructor: ``` limit(3).filter(ou: "People") ``` This could later be expanded to allow dispatching class methods off of criteria: ``` def self.people filter(ou: "People") end...