- Ensure dependencies are properly installed:
bundle
- Ensure the is working as expected:
bundle exec rspec
- Make sure to manually bump the version in
lib/graphql-hive/version.rb
- Build the gem:
gem build graphql-hive
- A new file should have been created, ex:
graphql-hive-0.3.0.gem
- Then, login to RubyGems:
gem login
- And publish the new version:
gem push <path_to_gem_file>
(ex:gem push graphql-hive-0.3.0.gem
)