GitXplorerGitXplorer
r

gem_comet

public
5 stars
0 forks
3 issues

Commits

List of commits on branch master.
Verified
0da0bce87a7d621ec3dcb8e77c439f0fe0382306

Merge pull request #424 from ryz310/dependabot/bundler/rubocop-1.69.0

rryz310 committed 2 months ago
Verified
4f3d7590f019e8009f5f6c60bb92233986ddf069

Bump rubocop from 1.68.0 to 1.69.0

ddependabot[bot] committed 2 months ago
Verified
47d2f8d20b472493d5c571607dcb9b4ba7046868

Merge pull request #423 from ryz310/dependabot/bundler/rubocop-performance-1.23.0

rryz310 committed 2 months ago
Verified
3a0a12e56176ea05fdbb297f32db53753826f749

Bump rubocop-performance from 1.22.1 to 1.23.0

ddependabot[bot] committed 2 months ago
Verified
a134fdf84402a94bf7c1b6de2eb937cd59810872

Merge pull request #422 from ryz310/dependabot/bundler/rubocop-1.68.0

rryz310 committed 3 months ago
Verified
6cd08b7eba241bd4696430ad8a0211010a55525a

Bump rubocop from 1.67.0 to 1.68.0

ddependabot[bot] committed 3 months ago

README

The README file for this repository.

CircleCI Gem Version Maintainability Test Coverage

GemComet

The gem_comet is a command line tool which to update and release your gem. Install as following:

$ gem install 'gem_comet'

Initialize gem_comet as following:

$ gem_comet init

Then, edit the created file: .gem_comet.yml as following.

version: 1

release:
  base_branch: master
  release_branch: release
  version_file_path: { Path of the version file. e.g. lib/gem_comet/version.rb }

Supported versions

  • Ruby 2.7, 3.0

Usage

Display changelogs

Displays changelogs from last release to HEAD commit.

$ gem_comet changelog

Release

Creates update PR and release PR.

$ gem_comet release { The version number you want to release. e.g. "1.2.3" }

Then, you should check pull requests on your GitHub repository page. You will see two pull requests: "Update v1.2.3" and "Release v1.2.3". First, you should check "Update v1.2.3" and merge. Next, you should check "Release v1.2.3" and merge. The "Release v1.2.3" destination is the release branch. You should set up CI that to deploy the gem automatically.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/gem_comet. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the GemComet project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.