active_directory 1.2.4 → 1.2.5
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/VERSION +1 -1
- data/active_directory.gemspec +3 -3
- data/lib/active_directory/base.rb +1 -1
- metadata +5 -5
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.5
|
data/active_directory.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{active_directory}
|
|
8
|
-
s.version = "1.2.
|
|
8
|
+
s.version = "1.2.5"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Adam T Kerr"]
|
|
12
|
-
s.date = %q{2011-02-
|
|
12
|
+
s.date = %q{2011-02-22}
|
|
13
13
|
s.description = %q{ActiveDirectory uses Net::LDAP to provide a means of accessing and modifying an Active Directory data store. This is a fork of the activedirectory gem.}
|
|
14
14
|
s.email = %q{ajrkerr@gmail.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -34,7 +34,7 @@ Gem::Specification.new do |s|
|
|
|
34
34
|
]
|
|
35
35
|
s.homepage = %q{http://github.com/ajrkerr/active_directory}
|
|
36
36
|
s.require_paths = ["lib"]
|
|
37
|
-
s.rubygems_version = %q{1.5.
|
|
37
|
+
s.rubygems_version = %q{1.5.2}
|
|
38
38
|
s.summary = %q{An interface library for accessing Microsoft's Active Directory.}
|
|
39
39
|
|
|
40
40
|
if s.respond_to? :specification_version then
|
|
@@ -411,7 +411,7 @@ module ActiveDirectory
|
|
|
411
411
|
# Takes the field name as a parameter
|
|
412
412
|
def self.get_field_type(name)
|
|
413
413
|
#Extract class name
|
|
414
|
-
klass = self.name[/.*::(.*)/, 1]
|
|
414
|
+
klass = self.name.include?('::') ? self.name[/.*::(.*)/, 1] : self.name
|
|
415
415
|
type = ::ActiveDirectory.special_fields[klass.classify.to_sym][name.to_s.downcase.to_sym]
|
|
416
416
|
type.to_s.classify unless type.nil?
|
|
417
417
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_directory
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 21
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 1.2.
|
|
9
|
+
- 5
|
|
10
|
+
version: 1.2.5
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Adam T Kerr
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-02-
|
|
18
|
+
date: 2011-02-22 00:00:00 -05:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -88,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
88
88
|
requirements: []
|
|
89
89
|
|
|
90
90
|
rubyforge_project:
|
|
91
|
-
rubygems_version: 1.5.
|
|
91
|
+
rubygems_version: 1.5.2
|
|
92
92
|
signing_key:
|
|
93
93
|
specification_version: 3
|
|
94
94
|
summary: An interface library for accessing Microsoft's Active Directory.
|