Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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