Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ambitious-activeldap

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ambitious-activeldap

  • 0.1.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

h2. An Ambitious ActiveLdap Adapter

Write LDAP search filters in Ruby. Awesomeness courtesy of Chris Wanstrath's Ambition library.

You must be using ActiveLdap 0.9 or greater.

h2. Get It

@$ sudo gem install ambitious-activeldap@

require 'rubygems'
require 'ambition/adapters/active_ldap'

h2. Examples

Let @User@ be a subclass of @ActiveLdap::Base@

User.select { |u| u.givenName == 'Severian' }.each do |user| puts user.name end

Queries don't run until you kick them. This adapter supports only the basic kicker methods: @each@, @each_with_index@, @map@, @entries@, @to_a@.

This adapter also doesn't support the methods that require sorting, slicing, or counting, because ActiveLdap effectively doesn't support such things. ActiveLdap lets you request sorted and sliced result sets, but it does the work in Ruby, so you might as well do it yourself.

You can call @to_s@, but not @to_hash@ on a query. @to_s@ returns the LDAP search filter as a string.

>> User.select { |m| m.givenName == 'Jonas' }.to_s => "(givenName=Jonas)"

h2. Issues.find(:all, :filter => "(type=bug)")

Bug me: "http://rubyforge.org/users/automatthew/":http://rubyforge.org/users/automatthew/

More information on Ambition:

FAQs

Package last updated on 25 Jul 2009

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc