-
Notifications
You must be signed in to change notification settings - Fork 0
/
cornell_ldap.gemspec
30 lines (24 loc) · 1.1 KB
/
cornell_ldap.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "cornell_ldap/version"
Gem::Specification.new do |s|
s.name = "cornell_ldap"
s.version = CornellLdap::VERSION
s.authors = ["Ari Epstein"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/aepstein/cornell_ldap"
s.summary = %q{Lightweight LDAP abstraction library to work Cornell's particular structure}
s.description = %q{Using ActiveLdap, this library provides an easy interface for communicating with the Cornell University LDAP directory. Use of this directory is restricted to purposes authorized by the university.}
s.rubyforge_project = "cornell_ldap"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.test_files = [
"spec/cornell_ldap_spec.rb",
"spec/spec_helper.rb"
]
s.add_development_dependency 'rspec'
s.add_dependency 'net-ldap'
end