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
4 changes: 3 additions & 1 deletion sdk/ruby/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

### Get the gem

The Ruby SDK is available [via Rubygems](https://rubygems.org/gems/chain-sdk). Make sure to use the most recent version whose major and minor components (`major.minor.x`) match your version of Chain Core. Ruby 2.1 or greater is required.
The Ruby SDK is available [via Rubygems](https://rubygems.org/gems/chain-sdk). Make sure to use the most recent version whose major and minor components (`major.minor.x`) match your version of Chain Core.

Ruby 2.0 or greater is required. We strongly recommend upgrading to Ruby 2.1 or greater, as [Ruby 2.0 has reached end-of-life](https://www.ruby-lang.org/en/downloads/branches/) and will no longer receive security updates and bugfixes.

For most applications, you can simply add the following to your `Gemfile`:

Expand Down
2 changes: 1 addition & 1 deletion sdk/ruby/chain-sdk.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Gem::Specification.new do |s|
s.summary = 'The Official Ruby SDK for Chain Core'
s.licenses = ['Apache-2.0']
s.homepage = 'https://github.com/chain/chain/tree/main/sdk/ruby'
s.required_ruby_version = '~> 2.1'
s.required_ruby_version = '~> 2.0'

s.files = ['README.md', 'LICENSE']
s.files += Dir['lib/**/*.rb']
Expand Down