{"id":16068106,"url":"https://github.com/ged/ruby-openldap","last_synced_at":"2025-06-17T12:37:24.828Z","repository":{"id":65988031,"uuid":"1400296","full_name":"ged/ruby-openldap","owner":"ged","description":"A simple, but full-featured Ruby binding for libldap (Github mirror)","archived":false,"fork":false,"pushed_at":"2017-01-24T04:21:19.000Z","size":112,"stargazers_count":6,"open_issues_count":0,"forks_count":8,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-02T12:48:03.996Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://bitbucket.org/ged/ruby-openldap","language":"C","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ged.png","metadata":{"files":{"readme":"README.md","changelog":"History.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2011-02-23T00:47:09.000Z","updated_at":"2021-12-22T00:01:35.000Z","dependencies_parsed_at":"2023-02-19T20:45:54.544Z","dependency_job_id":null,"html_url":"https://github.com/ged/ruby-openldap","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ged/ruby-openldap","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ged%2Fruby-openldap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ged%2Fruby-openldap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ged%2Fruby-openldap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ged%2Fruby-openldap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ged","download_url":"https://codeload.github.com/ged/ruby-openldap/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ged%2Fruby-openldap/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260359925,"owners_count":22997392,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-09T06:08:34.818Z","updated_at":"2025-06-17T12:37:19.815Z","avatar_url":"https://github.com/ged.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# openldap\n\n* http://bitbucket.org/ged/ruby-openldap\n\n\n## Description\n\nA simple, but feature-complete Ruby binding for OpenLDAP's libldap. \n\nThis binding is intended as an alternative for [ruby-ldap][] for libraries or applications which require a more complete implementation of the LDAP protocol (according to [RFC4511][]) than it provides.\n\nAdditions or changes:\n\n* Referrals for add, modify, delete, modrdn, compare\n* Controls for add, modify, delete, modrdn, compare\n* Asynchronous and synchronous APIs\n* Detailed exception class hierarchy for results instead of just one\n  class for all non-success results.\n* Complete [RFC4511][] support:\n  - extended operations and results\n  - unsolicited notifications\n  - continuation references\n  - intermediate responses\n  - alias deferencing\n  - etc.\n* Cleanly abandon terminated operations where supported\n* Memory-handling cleanup to avoid leaks, corruption, and other\n  problems experienced in the wild.\n* Drop deprecated non-_ext variants of operations which have a \n  modern equivalent.\n* M17n for Ruby 1.9.x.\n* Improved test coverage\n\n**NOTE:** This library is still under development, and should not be considered to be feature-complete or production-ready.\n\nThis project's versions follow the [Semantic Versioning Specification][semver].\n\n\n## Installation\n\n    gem install openldap\n\nYou may have to specify the path to `libldap` like so:\n\n    gem install openldap -- --with-ldap-dir=/usr/local\n\nand/or override your Ruby implementation's architecture flags if your Ruby and OpenLDAP installations don't match, particularly under MacOS X:\n\n    ARCHFLAGS=\"-arch x86_64\" gem install openldap\n\n\n## Contributing\n\nYou can check out the current development source with Mercurial via its [Bitbucket project][bitbucket]. Or if you prefer Git, via [its Github mirror][github].\n\nAfter checking out the source, run:\n\n    $ rake newb\n\nThis task will install any missing dependencies, run the tests/specs,\nand generate the API documentation.\n\n\n## License\n\nCopyright (c) 2011, Michael Granger\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice,\n  this list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n  this list of conditions and the following disclaimer in the documentation\n  and/or other materials provided with the distribution.\n\n* Neither the name of the author/s, nor the names of the project's\n  contributors may be used to endorse or promote products derived from this\n  software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\n[RFC4511]: http://tools.ietf.org/html/rfc4511\n[ruby-ldap]: http://ruby-ldap.sourceforge.net/\n[semver]: http://semver.org/\n[bitbucket]: https://bitbucket.org/ged/ruby-openldap\n[github]: https://github.com/ged/ruby-openldap\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fged%2Fruby-openldap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fged%2Fruby-openldap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fged%2Fruby-openldap/lists"}