Sha256: 55f461b2b0ffa7aa4dd63305f1afcdf7f837887e03443aa824aea0f994d43bea
Contents?: true
Size: 895 Bytes
Versions: 8
Compression:
Stored size: 895 Bytes
Contents
# Spearly SDK Ruby Spearly SDK for Ruby. ## Install Add this line to your application's `Gemfile`: ```ruby gem 'spearly-sdk-ruby', '~> x.y.z', require: 'spearly' ``` And then execute: ```sh bundle install ``` Or install it manually: ```sh gem install spearly-sdk-ruby ``` ## Contribute ### Increment version ```sh vim lib/spearly/version.rb ``` ### Update CHANGELOG ```sh vim CHANGELOG.md ``` ### Update Gemfile.lock ```sh bundle install ``` ### New version commit ```sh new_version=$(ruby -e "require './lib/spearly/version'; puts Spearly::VERSION") git commit -m "v$new_version" git tag -a v$new_version -m "Release $new_version" git push origin main git push origin --tags ``` ## Publish ### Build ```sh rake build ``` ### Push to RubyGems ```sh new_version=$(ruby -e "require './lib/spearly/version'; puts Spearly::VERSION") gem push pkg/spearly-sdk-ruby-$new_version.gem ```
Version data entries
8 entries across 8 versions & 1 rubygems