ucb_ldap 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +127 -0
- data/Manifest +25 -0
- data/README +80 -0
- data/Rakefile +22 -0
- data/TODO +2 -0
- data/init.rb +1 -0
- data/lib/person/adv_con_person.rb +0 -0
- data/lib/person/affiliation_methods.rb +212 -0
- data/lib/person/generic_attributes.rb +68 -0
- data/lib/ucb_ldap.rb +177 -0
- data/lib/ucb_ldap_address.rb +106 -0
- data/lib/ucb_ldap_affiliation.rb +84 -0
- data/lib/ucb_ldap_entry.rb +398 -0
- data/lib/ucb_ldap_exceptions.rb +27 -0
- data/lib/ucb_ldap_namespace.rb +42 -0
- data/lib/ucb_ldap_org.rb +369 -0
- data/lib/ucb_ldap_person.rb +135 -0
- data/lib/ucb_ldap_person_job_appointment.rb +79 -0
- data/lib/ucb_ldap_schema.rb +115 -0
- data/lib/ucb_ldap_schema_attribute.rb +153 -0
- data/lib/ucb_ldap_service.rb +109 -0
- data/lib/ucb_ldap_student_term.rb +101 -0
- data/lib/ucb_simple_ldap_entry.rb +201 -0
- data/schema/schema.yml +2954 -0
- data/ucb_ldap.gemspec +40 -0
- data/version.yml +1 -0
- metadata +124 -0
data/ucb_ldap.gemspec
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = %q{ucb_ldap}
|
5
|
+
s.version = "1.3.0"
|
6
|
+
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
|
+
s.authors = ["Steven Hansen, Steve Downey, Lucas Rockwell"]
|
9
|
+
s.date = %q{2008-12-14}
|
10
|
+
s.description = %q{Convenience classes for interacing with UCB's LDAP directory}
|
11
|
+
s.email = %q{runner@berkeley.edu}
|
12
|
+
s.extra_rdoc_files = ["README", "lib/person/adv_con_person.rb", "lib/person/affiliation_methods.rb", "lib/person/generic_attributes.rb", "lib/ucb_ldap.rb", "lib/ucb_ldap_address.rb", "lib/ucb_ldap_affiliation.rb", "lib/ucb_ldap_entry.rb", "lib/ucb_ldap_exceptions.rb", "lib/ucb_ldap_namespace.rb", "lib/ucb_ldap_org.rb", "lib/ucb_ldap_person.rb", "lib/ucb_ldap_person_job_appointment.rb", "lib/ucb_ldap_schema.rb", "lib/ucb_ldap_schema_attribute.rb", "lib/ucb_ldap_service.rb", "lib/ucb_ldap_student_term.rb", "lib/ucb_simple_ldap_entry.rb"]
|
13
|
+
s.files = ["CHANGELOG", "Manifest", "README", "Rakefile", "TODO", "init.rb", "lib/person/adv_con_person.rb", "lib/person/affiliation_methods.rb", "lib/person/generic_attributes.rb", "lib/ucb_ldap.rb", "lib/ucb_ldap_address.rb", "lib/ucb_ldap_affiliation.rb", "lib/ucb_ldap_entry.rb", "lib/ucb_ldap_exceptions.rb", "lib/ucb_ldap_namespace.rb", "lib/ucb_ldap_org.rb", "lib/ucb_ldap_person.rb", "lib/ucb_ldap_person_job_appointment.rb", "lib/ucb_ldap_schema.rb", "lib/ucb_ldap_schema_attribute.rb", "lib/ucb_ldap_service.rb", "lib/ucb_ldap_student_term.rb", "lib/ucb_simple_ldap_entry.rb", "schema/schema.yml", "version.yml", "ucb_ldap.gemspec"]
|
14
|
+
s.has_rdoc = true
|
15
|
+
s.homepage = %q{http://ucbrb.rubyforge.org/ucb_ldap}
|
16
|
+
s.rdoc_options = ["-o doc --inline-source -T hanna lib/*.rb"]
|
17
|
+
s.require_paths = ["lib"]
|
18
|
+
s.rubyforge_project = %q{ucbrb}
|
19
|
+
s.rubygems_version = %q{1.3.0}
|
20
|
+
s.summary = %q{Convenience classes for interacing with UCB's LDAP directory}
|
21
|
+
|
22
|
+
if s.respond_to? :specification_version then
|
23
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
24
|
+
s.specification_version = 2
|
25
|
+
|
26
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
27
|
+
s.add_runtime_dependency(%q<ruby-net-ldap>, [">= 0"])
|
28
|
+
s.add_runtime_dependency(%q<>=>, ["= 0.0.4"])
|
29
|
+
s.add_development_dependency(%q<echoe>, [">= 0"])
|
30
|
+
else
|
31
|
+
s.add_dependency(%q<ruby-net-ldap>, [">= 0"])
|
32
|
+
s.add_dependency(%q<>=>, ["= 0.0.4"])
|
33
|
+
s.add_dependency(%q<echoe>, [">= 0"])
|
34
|
+
end
|
35
|
+
else
|
36
|
+
s.add_dependency(%q<ruby-net-ldap>, [">= 0"])
|
37
|
+
s.add_dependency(%q<>=>, ["= 0.0.4"])
|
38
|
+
s.add_dependency(%q<echoe>, [">= 0"])
|
39
|
+
end
|
40
|
+
end
|
data/version.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
version: 'rel-1.3.0'
|
metadata
ADDED
@@ -0,0 +1,124 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ucb_ldap
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.3.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Steven Hansen, Steve Downey, Lucas Rockwell
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2008-12-14 00:00:00 -08:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: ruby-net-ldap
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: ">="
|
27
|
+
type: :runtime
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.0.4
|
34
|
+
version:
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: echoe
|
37
|
+
type: :development
|
38
|
+
version_requirement:
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: "0"
|
44
|
+
version:
|
45
|
+
description: Convenience classes for interacing with UCB's LDAP directory
|
46
|
+
email: runner@berkeley.edu
|
47
|
+
executables: []
|
48
|
+
|
49
|
+
extensions: []
|
50
|
+
|
51
|
+
extra_rdoc_files:
|
52
|
+
- README
|
53
|
+
- lib/person/adv_con_person.rb
|
54
|
+
- lib/person/affiliation_methods.rb
|
55
|
+
- lib/person/generic_attributes.rb
|
56
|
+
- lib/ucb_ldap.rb
|
57
|
+
- lib/ucb_ldap_address.rb
|
58
|
+
- lib/ucb_ldap_affiliation.rb
|
59
|
+
- lib/ucb_ldap_entry.rb
|
60
|
+
- lib/ucb_ldap_exceptions.rb
|
61
|
+
- lib/ucb_ldap_namespace.rb
|
62
|
+
- lib/ucb_ldap_org.rb
|
63
|
+
- lib/ucb_ldap_person.rb
|
64
|
+
- lib/ucb_ldap_person_job_appointment.rb
|
65
|
+
- lib/ucb_ldap_schema.rb
|
66
|
+
- lib/ucb_ldap_schema_attribute.rb
|
67
|
+
- lib/ucb_ldap_service.rb
|
68
|
+
- lib/ucb_ldap_student_term.rb
|
69
|
+
- lib/ucb_simple_ldap_entry.rb
|
70
|
+
files:
|
71
|
+
- CHANGELOG
|
72
|
+
- Manifest
|
73
|
+
- README
|
74
|
+
- Rakefile
|
75
|
+
- TODO
|
76
|
+
- init.rb
|
77
|
+
- lib/person/adv_con_person.rb
|
78
|
+
- lib/person/affiliation_methods.rb
|
79
|
+
- lib/person/generic_attributes.rb
|
80
|
+
- lib/ucb_ldap.rb
|
81
|
+
- lib/ucb_ldap_address.rb
|
82
|
+
- lib/ucb_ldap_affiliation.rb
|
83
|
+
- lib/ucb_ldap_entry.rb
|
84
|
+
- lib/ucb_ldap_exceptions.rb
|
85
|
+
- lib/ucb_ldap_namespace.rb
|
86
|
+
- lib/ucb_ldap_org.rb
|
87
|
+
- lib/ucb_ldap_person.rb
|
88
|
+
- lib/ucb_ldap_person_job_appointment.rb
|
89
|
+
- lib/ucb_ldap_schema.rb
|
90
|
+
- lib/ucb_ldap_schema_attribute.rb
|
91
|
+
- lib/ucb_ldap_service.rb
|
92
|
+
- lib/ucb_ldap_student_term.rb
|
93
|
+
- lib/ucb_simple_ldap_entry.rb
|
94
|
+
- schema/schema.yml
|
95
|
+
- version.yml
|
96
|
+
- ucb_ldap.gemspec
|
97
|
+
has_rdoc: true
|
98
|
+
homepage: http://ucbrb.rubyforge.org/ucb_ldap
|
99
|
+
post_install_message:
|
100
|
+
rdoc_options:
|
101
|
+
- -o doc --inline-source -T hanna lib/*.rb
|
102
|
+
require_paths:
|
103
|
+
- lib
|
104
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
105
|
+
requirements:
|
106
|
+
- - ">="
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: "0"
|
109
|
+
version:
|
110
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
111
|
+
requirements:
|
112
|
+
- - ">="
|
113
|
+
- !ruby/object:Gem::Version
|
114
|
+
version: "1.2"
|
115
|
+
version:
|
116
|
+
requirements: []
|
117
|
+
|
118
|
+
rubyforge_project: ucbrb
|
119
|
+
rubygems_version: 1.3.0
|
120
|
+
signing_key:
|
121
|
+
specification_version: 2
|
122
|
+
summary: Convenience classes for interacing with UCB's LDAP directory
|
123
|
+
test_files: []
|
124
|
+
|