Skip to content

Commit

Permalink
Merge pull request #11 from GrantBirki/dependabot/bundler/prod-ruby-d…
Browse files Browse the repository at this point in the history
…ependencies-c9e3f20a8b

Bump the prod-ruby-dependencies across 1 directories with 1 update
  • Loading branch information
GrantBirki authored Jan 10, 2024
2 parents d32da00 + f73594e commit dbb4e85
Show file tree
Hide file tree
Showing 179 changed files with 37,785 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ gem "config", "~> 5.1"
gem "garner", "~> 0.5.3"
gem "grape", "~> 2.0"
gem "grape-entity", "~> 1.0"
gem "net-ldap", "~> 0.18.0"
gem "net-ldap", "~> 0.19.0"
gem "puma", "~> 6.4"
gem "rack", "~> 3.0", ">= 3.0.8"
gem "rackup", "~> 2.1"
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ GEM
mustermann-grape (1.0.2)
mustermann (>= 1.0.0)
mutex_m (0.2.0)
net-ldap (0.18.0)
net-ldap (0.19.0)
nio4r (2.7.0)
parallel (1.24.0)
parser (3.3.0.2)
Expand Down Expand Up @@ -230,7 +230,7 @@ DEPENDENCIES
grape (~> 2.0)
grape-entity (~> 1.0)
irb (~> 1.9)
net-ldap (~> 0.18.0)
net-ldap (~> 0.19.0)
puma (~> 6.4)
rack (~> 3.0, >= 3.0.8)
rackup (~> 2.1)
Expand Down
2 changes: 1 addition & 1 deletion script/test
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ fi
echo -e "\n🧪 ${BLUE}Running tests: $(date "+%H:%M:%S")${OFF}\n"
cd "$(dirname $0)/.."

bundle exec bin/rspec spec && rspec_exit=$? || rspec_exit=$?
bundle exec bin/rspec spec/unit && rspec_exit=$? || rspec_exit=$?

total_coverage=$(cat "$DIR/coverage/total-coverage.txt")

Expand Down
Empty file added spec/unit/.gitkeep
Empty file.
Empty file.
3 changes: 3 additions & 0 deletions vendor/cache/activeldap-888812e59b9b/.dir-locals.el
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))))
13 changes: 13 additions & 0 deletions vendor/cache/activeldap-888812e59b9b/.dockerignore
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
6 changes: 6 additions & 0 deletions vendor/cache/activeldap-888812e59b9b/.github/dependabot.yml
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 vendor/cache/activeldap-888812e59b9b/.github/workflows/test.yaml
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 }}
12 changes: 12 additions & 0 deletions vendor/cache/activeldap-888812e59b9b/.gitignore
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
8 changes: 8 additions & 0 deletions vendor/cache/activeldap-888812e59b9b/.yardopts
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/
Loading

0 comments on commit dbb4e85

Please sign in to comment.