-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from GrantBirki/dependabot/bundler/prod-ruby-d…
…ependencies-c9e3f20a8b Bump the prod-ruby-dependencies across 1 directories with 1 update
- Loading branch information
Showing
179 changed files
with
37,785 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
((sh-mode . ((indent-tabs-mode . nil) | ||
(sh-indentation . 2) | ||
(sh-basic-offset . 2)))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
* | ||
!/Gemfile | ||
!/Gemfile.activemodel5 | ||
!/Gemfile.activemodel6 | ||
!/Gemfile.activemodel7 | ||
!/activeldap.gemspec | ||
!/dockerfiles/add-test-example-org-dc.ldif | ||
!/dockerfiles/config.yaml | ||
!/dockerfiles/olc-access-readable-by-all.ldif | ||
!/dockerfiles/openldap-prepare.sh | ||
!/lib/active_ldap/version.rb | ||
!/test/add-phonetic-attribute-options-to-slapd.ldif | ||
!/test/enable-dynamic-groups.ldif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" |
113 changes: 113 additions & 0 deletions
113
vendor/cache/activeldap-888812e59b9b/.github/workflows/test.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
name: Test | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
ruby: | ||
name: >- | ||
Ruby ${{ matrix.ruby }} & | ||
Active Model ${{ matrix.activemodel }} & | ||
${{ matrix.adapter }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
# Active Model 5 | ||
- activemodel: "5" | ||
adapter: "ldap" | ||
ruby: "2.5" | ||
- activemodel: "5" | ||
adapter: "net-ldap" | ||
ruby: "2.5" | ||
- activemodel: "5" | ||
adapter: "ldap" | ||
ruby: "2.6" | ||
- activemodel: "5" | ||
adapter: "net-ldap" | ||
ruby: "2.6" | ||
- activemodel: "5" | ||
adapter: "ldap" | ||
ruby: "2.7" | ||
- activemodel: "5" | ||
adapter: "net-ldap" | ||
ruby: "2.7" | ||
|
||
# Active Model 6 | ||
- activemodel: "6" | ||
adapter: "ldap" | ||
ruby: "2.5" | ||
- activemodel: "6" | ||
adapter: "net-ldap" | ||
ruby: "2.5" | ||
- activemodel: "6" | ||
adapter: "ldap" | ||
ruby: "2.6" | ||
- activemodel: "6" | ||
adapter: "net-ldap" | ||
ruby: "2.6" | ||
- activemodel: "6" | ||
adapter: "ldap" | ||
ruby: "2.7" | ||
- activemodel: "6" | ||
adapter: "net-ldap" | ||
ruby: "2.7" | ||
- activemodel: "6" | ||
adapter: "ldap" | ||
ruby: "3.0" | ||
- activemodel: "6" | ||
adapter: "net-ldap" | ||
ruby: "3.0" | ||
|
||
# Active Model 7 | ||
- activemodel: "7" | ||
adapter: "ldap" | ||
ruby: "2.7" | ||
- activemodel: "7" | ||
adapter: "net-ldap" | ||
ruby: "2.7" | ||
- activemodel: "7" | ||
adapter: "ldap" | ||
ruby: "3.0" | ||
- activemodel: "7" | ||
adapter: "net-ldap" | ||
ruby: "3.0" | ||
- activemodel: "7" | ||
adapter: "ldap" | ||
ruby: "3.1" | ||
- activemodel: "7" | ||
adapter: "net-ldap" | ||
ruby: "3.1" | ||
- activemodel: "7" | ||
adapter: "ldap" | ||
ruby: "3.2" | ||
- activemodel: "7" | ||
adapter: "net-ldap" | ||
ruby: "3.2" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Run | ||
run: | | ||
docker-compose run \ | ||
-e ACTIVE_LDAP_TEST_ADAPTER=${{ matrix.adapter }} \ | ||
ruby-${{ matrix.ruby }}-activemodel-${{ matrix.activemodel }} | ||
jruby: | ||
name: JRuby ${{ matrix.jruby }} & Active Model ${{ matrix.activemodel }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
jruby: | ||
- 9 | ||
activemodel: | ||
- "5" | ||
- "6" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Run | ||
run: | | ||
docker-compose run \ | ||
jruby-${{ matrix.jruby }}-activemodel-${{ matrix.activemodel }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/Gemfile.lock | ||
/.yardoc/ | ||
/test/.test-result/ | ||
/test/config.yaml | ||
/doc/reference/ | ||
/doc/html/activeldap/ | ||
/doc/po/*.pot | ||
/doc/po/*.po | ||
/doc/po/*/*.edit.po | ||
/doc/po/*/*.time_stamp | ||
/pkg/ | ||
/benchmark/config.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--title ActiveLdap | ||
--charset UTF-8 | ||
--readme README.md | ||
--markup markdown | ||
--markup-provider kramdown | ||
--files doc/text/**/* | ||
--output-dir doc/reference/en | ||
--exclude /templates/ |
Oops, something went wrong.