Skip to content

Commit

Permalink
ARROW-17864: [Plasma][Ruby] Deprecate Plasma Ruby bindings (#14258)
Browse files Browse the repository at this point in the history
See discussion at
https://lists.apache.org/thread/nw232k2lzmg9kcl8ts475m9ybl34j81p

Authored-by: Sutou Kouhei <kou@clear-code.com>
Signed-off-by: Sutou Kouhei <kou@clear-code.com>
  • Loading branch information
kou committed Sep 29, 2022
1 parent b9720b3 commit fc9a0e7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ruby/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Here are the official Ruby bindings for Apache Arrow.

[Red Gandiva](https://github.com/apache/arrow/tree/master/ruby/red-gandiva) is the Gandiva bindings.

[Red Plasma](https://github.com/apache/arrow/tree/master/ruby/red-plasma) is the Plasma bindings.
[Red Plasma](https://github.com/apache/arrow/tree/master/ruby/red-plasma) is the Plasma bindings. (This is deprecated since 10.0.0. This will be removed from 12.0.0 or so.)

[Red Parquet](https://github.com/apache/arrow/tree/master/ruby/red-parquet) is the Parquet bindings.

Expand Down
2 changes: 2 additions & 0 deletions ruby/red-plasma/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@

# Red Plasma - Plasma Ruby

This is deprecated since 10.0.0. This will be removed from 12.0.0 or so.

Red Plasma is the Ruby bindings of Plasma. Red Plasma is based on GObject Introspection.

Plasma is an in-memory object store and cache for big data.
Expand Down
9 changes: 8 additions & 1 deletion ruby/red-plasma/red-plasma.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,12 @@ Gem::Specification.new do |spec|
spec.email = ["dev@arrow.apache.org"]

spec.summary = "Red Plasma is the Ruby bindings of Plasma"
spec.description = "Plasma is an in-memory object store and cache for big data."
deprecated_message =
"red-plasma is deprecated since 10.0.0. " +
"red-plasma will not be released from Apache Arrow 12.0.0 or so."
spec.description =
"Plasma is an in-memory object store and cache for big data. " +
deprecated_message
spec.license = "Apache-2.0"
spec.files = ["README.md", "Rakefile", "Gemfile", "#{spec.name}.gemspec"]
spec.files += ["LICENSE.txt", "NOTICE.txt"]
Expand All @@ -46,4 +51,6 @@ Gem::Specification.new do |spec|
spec.add_development_dependency("bundler")
spec.add_development_dependency("rake")
spec.add_development_dependency("test-unit")

spec.post_install_message = deprecated_message
end

0 comments on commit fc9a0e7

Please sign in to comment.