ucb_ldap 1.4.2 → 2.0.0.pre1
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 +5 -2
- data/Manifest +0 -1
- data/Rakefile +2 -4
- data/ucb_ldap.gemspec +14 -15
- data/version.yml +1 -1
- metadata +38 -58
data/CHANGELOG
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
= UCB::LDAP Changelog
|
|
2
2
|
|
|
3
|
-
== Version
|
|
3
|
+
== Version 2.0.0, April 4, 2012
|
|
4
|
+
* Switch from ruby-net-ldap to net-ldap (UCB::LDAP should now work with ruby-1.9.x)
|
|
5
|
+
|
|
6
|
+
== Version 1.4.2, August 3, 2010
|
|
4
7
|
* Remove hack that tried to persist the net-ldap connection instance as this cause problems
|
|
5
8
|
with leaving countless file descriptors open when run under JRuby.
|
|
6
9
|
* Updated bundled schema.yml file
|
|
@@ -129,4 +132,4 @@ with leaving countless file descriptors open when run under JRuby.
|
|
|
129
132
|
|
|
130
133
|
== Version 0.1.0, October 5, 2006
|
|
131
134
|
|
|
132
|
-
* Initial release.
|
|
135
|
+
* Initial release.
|
data/Manifest
CHANGED
data/Rakefile
CHANGED
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
require 'rubygems'
|
|
2
2
|
require 'rake'
|
|
3
3
|
require 'echoe'
|
|
4
|
-
require 'hanna/rdoctask'
|
|
5
4
|
|
|
6
|
-
Echoe.new('ucb_ldap', '
|
|
5
|
+
Echoe.new('ucb_ldap', '2.0.0.pre1') do |p|
|
|
7
6
|
p.description = "Convenience classes for interacing with UCB's LDAP directory"
|
|
8
7
|
p.url = "http://ucbrb.rubyforge.org/ucb_ldap"
|
|
9
8
|
p.author = "Steven Hansen, Steve Downey, Lucas Rockwell"
|
|
10
9
|
p.email = "runner@berkeley.edu"
|
|
11
10
|
p.ignore_pattern = ["svn_user.yml", "tasks/ucb_ldap.rake", "spec/**/**", "test/**/**"]
|
|
12
11
|
p.project = "ucbrb"
|
|
13
|
-
p.runtime_dependencies = ["
|
|
14
|
-
p.rdoc_options = "-o doc --inline-source -T hanna lib/*.rb"
|
|
12
|
+
p.runtime_dependencies = ["net-ldap =0.2.2"]
|
|
15
13
|
p.rdoc_pattern = ["README", "lib/**/**"]
|
|
16
14
|
end
|
|
17
15
|
|
data/ucb_ldap.gemspec
CHANGED
|
@@ -1,33 +1,32 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
|
-
s.name =
|
|
5
|
-
s.version = "
|
|
4
|
+
s.name = "ucb_ldap"
|
|
5
|
+
s.version = "2.0.0.pre1"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Steven Hansen, Steve Downey, Lucas Rockwell"]
|
|
9
|
-
s.date =
|
|
10
|
-
s.description =
|
|
11
|
-
s.email =
|
|
9
|
+
s.date = "2012-04-24"
|
|
10
|
+
s.description = "Convenience classes for interacing with UCB's LDAP directory"
|
|
11
|
+
s.email = "runner@berkeley.edu"
|
|
12
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"]
|
|
13
|
-
s.files = ["CHANGELOG", "Manifest", "README", "Rakefile", "TODO", "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", "schema/schema.yml", "
|
|
14
|
-
s.homepage =
|
|
15
|
-
s.rdoc_options = ["-
|
|
13
|
+
s.files = ["CHANGELOG", "Manifest", "README", "Rakefile", "TODO", "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", "schema/schema.yml", "version.yml", "ucb_ldap.gemspec"]
|
|
14
|
+
s.homepage = "http://ucbrb.rubyforge.org/ucb_ldap"
|
|
15
|
+
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Ucb_ldap", "--main", "README"]
|
|
16
16
|
s.require_paths = ["lib"]
|
|
17
|
-
s.rubyforge_project =
|
|
18
|
-
s.rubygems_version =
|
|
19
|
-
s.summary =
|
|
17
|
+
s.rubyforge_project = "ucbrb"
|
|
18
|
+
s.rubygems_version = "1.8.15"
|
|
19
|
+
s.summary = "Convenience classes for interacing with UCB's LDAP directory"
|
|
20
20
|
|
|
21
21
|
if s.respond_to? :specification_version then
|
|
22
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
23
22
|
s.specification_version = 3
|
|
24
23
|
|
|
25
24
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
26
|
-
s.add_runtime_dependency(%q<
|
|
25
|
+
s.add_runtime_dependency(%q<net-ldap>, ["= 0.2.2"])
|
|
27
26
|
else
|
|
28
|
-
s.add_dependency(%q<
|
|
27
|
+
s.add_dependency(%q<net-ldap>, ["= 0.2.2"])
|
|
29
28
|
end
|
|
30
29
|
else
|
|
31
|
-
s.add_dependency(%q<
|
|
30
|
+
s.add_dependency(%q<net-ldap>, ["= 0.2.2"])
|
|
32
31
|
end
|
|
33
32
|
end
|
data/version.yml
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
version: 'rel-
|
|
1
|
+
version: 'rel-2.0.0'
|
metadata
CHANGED
|
@@ -1,46 +1,32 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ucb_ldap
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
prerelease:
|
|
6
|
-
segments:
|
|
7
|
-
- 1
|
|
8
|
-
- 4
|
|
9
|
-
- 2
|
|
10
|
-
version: 1.4.2
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 2.0.0.pre1
|
|
5
|
+
prerelease: 6
|
|
11
6
|
platform: ruby
|
|
12
|
-
authors:
|
|
7
|
+
authors:
|
|
13
8
|
- Steven Hansen, Steve Downey, Lucas Rockwell
|
|
14
9
|
autorequire:
|
|
15
10
|
bindir: bin
|
|
16
11
|
cert_chain: []
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
name: ruby-net-ldap
|
|
23
|
-
prerelease: false
|
|
24
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
|
12
|
+
date: 2012-04-24 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: net-ldap
|
|
16
|
+
requirement: &2159990520 !ruby/object:Gem::Requirement
|
|
25
17
|
none: false
|
|
26
|
-
requirements:
|
|
27
|
-
- -
|
|
28
|
-
- !ruby/object:Gem::Version
|
|
29
|
-
|
|
30
|
-
segments:
|
|
31
|
-
- 0
|
|
32
|
-
- 0
|
|
33
|
-
- 4
|
|
34
|
-
version: 0.0.4
|
|
18
|
+
requirements:
|
|
19
|
+
- - =
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: 0.2.2
|
|
35
22
|
type: :runtime
|
|
36
|
-
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: *2159990520
|
|
37
25
|
description: Convenience classes for interacing with UCB's LDAP directory
|
|
38
26
|
email: runner@berkeley.edu
|
|
39
27
|
executables: []
|
|
40
|
-
|
|
41
28
|
extensions: []
|
|
42
|
-
|
|
43
|
-
extra_rdoc_files:
|
|
29
|
+
extra_rdoc_files:
|
|
44
30
|
- README
|
|
45
31
|
- lib/person/adv_con_person.rb
|
|
46
32
|
- lib/person/affiliation_methods.rb
|
|
@@ -58,7 +44,7 @@ extra_rdoc_files:
|
|
|
58
44
|
- lib/ucb_ldap_schema_attribute.rb
|
|
59
45
|
- lib/ucb_ldap_service.rb
|
|
60
46
|
- lib/ucb_ldap_student_term.rb
|
|
61
|
-
files:
|
|
47
|
+
files:
|
|
62
48
|
- CHANGELOG
|
|
63
49
|
- Manifest
|
|
64
50
|
- README
|
|
@@ -81,42 +67,36 @@ files:
|
|
|
81
67
|
- lib/ucb_ldap_service.rb
|
|
82
68
|
- lib/ucb_ldap_student_term.rb
|
|
83
69
|
- schema/schema.yml
|
|
84
|
-
- ucb_ldap.gemspec
|
|
85
70
|
- version.yml
|
|
86
|
-
|
|
71
|
+
- ucb_ldap.gemspec
|
|
87
72
|
homepage: http://ucbrb.rubyforge.org/ucb_ldap
|
|
88
73
|
licenses: []
|
|
89
|
-
|
|
90
74
|
post_install_message:
|
|
91
|
-
rdoc_options:
|
|
92
|
-
-
|
|
93
|
-
|
|
75
|
+
rdoc_options:
|
|
76
|
+
- --line-numbers
|
|
77
|
+
- --inline-source
|
|
78
|
+
- --title
|
|
79
|
+
- Ucb_ldap
|
|
80
|
+
- --main
|
|
81
|
+
- README
|
|
82
|
+
require_paths:
|
|
94
83
|
- lib
|
|
95
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
84
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
96
85
|
none: false
|
|
97
|
-
requirements:
|
|
98
|
-
- -
|
|
99
|
-
- !ruby/object:Gem::Version
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
- 0
|
|
103
|
-
version: "0"
|
|
104
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - ! '>='
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0'
|
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
105
91
|
none: false
|
|
106
|
-
requirements:
|
|
107
|
-
- -
|
|
108
|
-
- !ruby/object:Gem::Version
|
|
109
|
-
|
|
110
|
-
segments:
|
|
111
|
-
- 1
|
|
112
|
-
- 2
|
|
113
|
-
version: "1.2"
|
|
92
|
+
requirements:
|
|
93
|
+
- - ! '>='
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '1.2'
|
|
114
96
|
requirements: []
|
|
115
|
-
|
|
116
97
|
rubyforge_project: ucbrb
|
|
117
|
-
rubygems_version: 1.
|
|
98
|
+
rubygems_version: 1.8.15
|
|
118
99
|
signing_key:
|
|
119
100
|
specification_version: 3
|
|
120
101
|
summary: Convenience classes for interacing with UCB's LDAP directory
|
|
121
102
|
test_files: []
|
|
122
|
-
|