jruby-ldap-patched 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +4 -0
- data/Gemfile +4 -0
- data/History.txt +7 -0
- data/LICENSE +20 -0
- data/README +14 -0
- data/Rakefile +14 -0
- data/jruby-ldap.gemspec +20 -0
- data/lib/jruby-ldap.rb +7 -0
- data/lib/jruby-ldap/version.rb +5 -0
- data/lib/ldap.rb +83 -0
- data/lib/ldap/conn.rb +285 -0
- data/lib/ldap/constants.rb +126 -0
- data/lib/ldap/control.rb +48 -0
- data/lib/ldap/entry.rb +64 -0
- data/lib/ldap/error.rb +14 -0
- data/lib/ldap/ldif.rb +567 -0
- data/lib/ldap/mod.rb +74 -0
- data/lib/ldap/schema.rb +131 -0
- data/test/setup.rb +52 -0
- data/test/test_add.rb +21 -0
- data/test/test_connection.rb +52 -0
- data/test/test_delete.rb +21 -0
- data/test/test_search.rb +87 -0
- data/test/test_ssl.rb +21 -0
- metadata +88 -0
metadata
ADDED
@@ -0,0 +1,88 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jruby-ldap-patched
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.3
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ola Bini
|
8
|
+
- Peter Souter
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2017-06-15 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rake
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - "<"
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '11.0'
|
21
|
+
type: :development
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - "<"
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: '11.0'
|
28
|
+
description: Port of Ruby/LDAP to JRuby, with patch for Puppetserver
|
29
|
+
email:
|
30
|
+
- ola.bini@gmail.com
|
31
|
+
executables: []
|
32
|
+
extensions: []
|
33
|
+
extra_rdoc_files: []
|
34
|
+
files:
|
35
|
+
- ".gitignore"
|
36
|
+
- Gemfile
|
37
|
+
- History.txt
|
38
|
+
- LICENSE
|
39
|
+
- README
|
40
|
+
- Rakefile
|
41
|
+
- jruby-ldap.gemspec
|
42
|
+
- lib/jruby-ldap.rb
|
43
|
+
- lib/jruby-ldap/version.rb
|
44
|
+
- lib/ldap.rb
|
45
|
+
- lib/ldap/conn.rb
|
46
|
+
- lib/ldap/constants.rb
|
47
|
+
- lib/ldap/control.rb
|
48
|
+
- lib/ldap/entry.rb
|
49
|
+
- lib/ldap/error.rb
|
50
|
+
- lib/ldap/ldif.rb
|
51
|
+
- lib/ldap/mod.rb
|
52
|
+
- lib/ldap/schema.rb
|
53
|
+
- test/setup.rb
|
54
|
+
- test/test_add.rb
|
55
|
+
- test/test_connection.rb
|
56
|
+
- test/test_delete.rb
|
57
|
+
- test/test_search.rb
|
58
|
+
- test/test_ssl.rb
|
59
|
+
homepage: https://github.com/petems/jruby-ldap-patched
|
60
|
+
licenses: []
|
61
|
+
metadata: {}
|
62
|
+
post_install_message:
|
63
|
+
rdoc_options: []
|
64
|
+
require_paths:
|
65
|
+
- lib
|
66
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '0'
|
71
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
requirements: []
|
77
|
+
rubyforge_project:
|
78
|
+
rubygems_version: 2.5.2
|
79
|
+
signing_key:
|
80
|
+
specification_version: 4
|
81
|
+
summary: Port of Ruby/LDAP to JRuby, with patch for Puppetserver
|
82
|
+
test_files:
|
83
|
+
- test/setup.rb
|
84
|
+
- test/test_add.rb
|
85
|
+
- test/test_connection.rb
|
86
|
+
- test/test_delete.rb
|
87
|
+
- test/test_search.rb
|
88
|
+
- test/test_ssl.rb
|