Skip to content

Commit 3d7631a

Browse files
Merge branch 'master' into feat/modify-controls
2 parents dbf56b9 + a515dad commit 3d7631a

File tree

4 files changed

+16
-33
lines changed

4 files changed

+16
-33
lines changed

.github/workflows/test.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,13 @@ jobs:
1919
strategy:
2020
matrix:
2121
ruby:
22-
- "2.6"
23-
- "2.7"
2422
- "3.0"
2523
- "3.1"
2624
- "3.2"
27-
- "jruby-9.3"
25+
- "3.3"
2826
- "jruby-9.4"
29-
- "truffleruby-22"
27+
- "truffleruby"
3028
steps:
3129
- uses: actions/checkout@v2
3230
- name: Run tests with Ruby ${{ matrix.ruby }}
33-
run: docker-compose run ci-${{ matrix.ruby }}
31+
run: docker compose run ci-${{ matrix.ruby }}

README.rdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ the most recent LDAP RFCs (4510–4519, plus portions of 4520–4532).
2323

2424
== Synopsis
2525

26-
See {Net::LDAP on rubydoc.info}[https://www.rubydoc.info/github/ruby-ldap/ruby-net-ldap] for documentation and usage samples.
26+
See {Net::LDAP on rubydoc.info}[https://www.rubydoc.info/github/ruby-ldap/ruby-net-ldap/Net/LDAP] for documentation and usage samples.
2727

2828
== Requirements
2929

docker-compose.yml

+10-26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: "3.8"
2-
31
networks:
42
integration_test_network:
53

@@ -24,22 +22,8 @@ services:
2422
volumes:
2523
- ./test/fixtures/ldif:/ldif:ro
2624

27-
ci-2.6:
28-
image: ruby:2.7
29-
entrypoint: /code/ci-run.sh
30-
environment:
31-
INTEGRATION: openldap
32-
INTEGRATION_HOST: ldap.example.org
33-
depends_on:
34-
- openldap
35-
networks:
36-
integration_test_network:
37-
volumes:
38-
- .:/code
39-
working_dir: /code
40-
41-
ci-2.7:
42-
image: ruby:2.7
25+
ci-3.0:
26+
image: ruby:3.0
4327
entrypoint: /code/ci-run.sh
4428
environment:
4529
INTEGRATION: openldap
@@ -52,8 +36,8 @@ services:
5236
- .:/code
5337
working_dir: /code
5438

55-
ci-3.0:
56-
image: ruby:3.0
39+
ci-3.1:
40+
image: ruby:3.1
5741
entrypoint: /code/ci-run.sh
5842
environment:
5943
INTEGRATION: openldap
@@ -66,8 +50,8 @@ services:
6650
- .:/code
6751
working_dir: /code
6852

69-
ci-3.1:
70-
image: ruby:3.1
53+
ci-3.2:
54+
image: ruby:3.2
7155
entrypoint: /code/ci-run.sh
7256
environment:
7357
INTEGRATION: openldap
@@ -80,8 +64,8 @@ services:
8064
- .:/code
8165
working_dir: /code
8266

83-
ci-3.2:
84-
image: ruby:3.2
67+
ci-3.3:
68+
image: ruby:3.3
8569
entrypoint: /code/ci-run.sh
8670
environment:
8771
INTEGRATION: openldap
@@ -95,8 +79,8 @@ services:
9579
working_dir: /code
9680

9781
# https://github.com/flavorjones/truffleruby/pkgs/container/truffleruby
98-
ci-truffleruby-22:
99-
image: ghcr.io/flavorjones/truffleruby:22.3.1
82+
ci-truffleruby:
83+
image: ghcr.io/flavorjones/truffleruby:stable
10084
entrypoint: /code/ci-run.sh
10185
environment:
10286
INTEGRATION: openldap

net-ldap.gemspec

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ the most recent LDAP RFCs (4510-4519, plutions of 4520-4532).}
2626
s.homepage = %q{http://github.com/ruby-ldap/ruby-net-ldap}
2727
s.rdoc_options = ["--main", "README.rdoc"]
2828
s.require_paths = ["lib"]
29-
s.required_ruby_version = ">= 2.0.0"
29+
s.required_ruby_version = ">= 3.0.0"
3030
s.summary = %q{Net::LDAP for Ruby (also called net-ldap) implements client access for the Lightweight Directory Access Protocol (LDAP), an IETF standard protocol for accessing distributed directory services}
3131

32+
s.add_dependency("ostruct")
3233
s.add_development_dependency("flexmock", "~> 1.3")
3334
s.add_development_dependency("rake", "~> 12.3.3")
3435
s.add_development_dependency("rubocop", "~> 1.48")

0 commit comments

Comments
 (0)