Delete lasted Ruby references (#1107)

# Description
Looks like recently closed
[PR#1102](https://github.com/delta-io/delta-rs/pull/1102) missed some
Ruby references.
This PR cleaned the rest.

Co-authored-by: Ilya Moshkov <ilya.moshkov@exosfinancial.com>
This commit is contained in:
Ilia Moshkov 2023-01-28 00:44:18 +04:00 committed by GitHub
parent c41c0fe2b1
commit 53a46183d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 4 additions and 13 deletions

1
.github/CODEOWNERS vendored
View File

@ -3,5 +3,4 @@ proofs/ @houqp
python/ @wjones127 @fvaleye @rtyler @roeap @houqp
dynamodbb_lock/ @mosyp @houqp @xianwill
aws/delta-checkpoint/ @xianwill @houqp @rtyler @mosyp
ruby/ @rtyler
tlaplus/ @houqp

View File

@ -9,9 +9,6 @@ rust:
binding/python:
- python/**/*
binding/ruby:
- ruby/**/*
ci:
- .github/**.*

View File

@ -1,5 +1,2 @@
# This file is used by cargo-watch
ruby/spec
ruby/lib
.idea

View File

@ -21,7 +21,7 @@ used with data processing frameworks like
link:https://github.com/apache/arrow-datafusion[datafusion],
link:https://github.com/apache/arrow-datafusion/tree/master/ballista[ballista],
link:https://github.com/pola-rs/polars[polars],
link:https://github.com/rajasekarv/vega[vega], etc. It also provides bindings to other higher level languages such as link:https://delta-io.github.io/delta-rs/python/[Python] or Ruby.
link:https://github.com/rajasekarv/vega[vega], etc. It also provides bindings to other higher level language link:https://delta-io.github.io/delta-rs/python/[Python].
=== Features

View File

@ -17,13 +17,11 @@ FUTURE_RELEASE="0.6.0"
# only consider tags of the correct language
if [ "$LANGUAGE" == "rust" ]; then
EXCLUDED_LANGUAGES_REGEX="python.*|ruby.*"
EXCLUDED_LANGUAGES_REGEX="python.*"
elif [ "$LANGUAGE" == "python" ]; then
EXCLUDED_LANGUAGES_REGEX="ruby.*|rust.*"
elif [ "$LANGUAGE" == "ruby" ]; then
EXCLUDED_LANGUAGES_REGEX="python.*|rust.*"
EXCLUDED_LANGUAGES_REGEX="rust.*"
else
echo "Language $LANGUAGE is invalid. Should be one of Python, Ruby and Rust."
echo "Language $LANGUAGE is invalid. Should be one of Python and Rust."
fi
SOURCE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"