Project

heal

0.0
The project is in a healthy, maintained state
Heal your dev workflows
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 1.0
~> 0.23.1
>= 2.6.18, < 3.0
 Project Readme

Heal

Heal is a command-line interface for managing Git workflows and configurations.

Installation

To install the Heal CLI, follow these steps:

  1. Add the gem to your Gemfile:

    gem 'heal'
  2. Install the gem: Run the following command in your terminal:

    bundle install

    If you are not using Bundler, you can install the gem directly:

    gem install heal
  3. Verify the installation: After installation, you can verify that the Heal CLI is working by running:

    heal help

Available Commands

Configuration

  • config:
    • Description: Displays the current configuration settings.
    • Usage:
      heal config

Commands

  • delivery:

    • Description: Delivers an issue to the test environment by checking out the relevant branches and cherry-picking commits associated with the specified issue ID.
    • Usage:
      heal delivery
  • release:

    • Description: Releases a feature to a production-ready branch by cherry-picking commits from issues under an EPIC.
    • Usage:
      heal release
  • git cherry-pick-pr COMMIT_MESSAGE_IDENTIFIER REPO SOURCE_BRANCH TARGET_BRANCH THROWAWAY_BRANCH:

    • Description: Cherry picks a PR based on a commit message identifier (like a JIRA key), source repository, source branch, target branch, and a throwaway branch used for creating a PR to the target branch.
    • Usage:
      heal git cherry-pick-pr <COMMIT_MESSAGE_IDENTIFIER> <REPO> <SOURCE_BRANCH> <TARGET_BRANCH> <THROWAWAY_BRANCH>
  • git find-commits COMMIT_MESSAGE_IDENTIFIER:

    • Description: Finds commit IDs based on an identifier in the commit message.
    • Usage:
      heal git find-commits <COMMIT_MESSAGE_IDENTIFIER>
  • git create-pr REPO_NAME SOURCE_BRANCH TO_BRANCH:

    • Description: Creates a PR from a source branch to a target branch in the specified repository.
    • Usage:
      heal git create-pr <REPO_NAME> <SOURCE_BRANCH> <TO_BRANCH>

Configuration File

The Heal CLI uses a configuration file to manage settings. By default, the configuration file is located at ~/.heal/config.yml. You can specify a different path using the -c option.

Configuration Structure

The configuration file should include the following sections:

  • git: Contains Git-related settings.
    • repos: An array of repository paths that the CLI will manage.
    • directories: An array of directories to search for Git repositories.
    • branch: Contains branch settings.
      • prefix: The prefix for branch names.
      • targets: Specifies target branches for delivery and development.

Example Configuration

git:
  repos:
    - /path/to/repo1
    - /path/to/repo2
  directories:
    - ~/projects
  branch:
    prefix: "feature"
    targets:
      test: "test-branch"
      development: "dev-branch"
      release: "release-branch"

Usage

To use the Heal CLI, simply run the command followed by the desired subcommand. For example:

heal delivery

This command will initiate the delivery process for the issue with the ID prompted by the user.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test 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 lib/heal/version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/jjatinggoyal/heal. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the 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 Heal project's codebases, issue trackers, chat rooms, and mailing lists is expected to follow the code of conduct.