Sha256: 8a0157e42246e71ceba88d9a0b5946e5eb99f462ffafd95b8feba5df9466d5cb

Contents?: true

Size: 359 Bytes

Versions: 4

Compression:

Stored size: 359 Bytes

Contents

require 'thor'
require_relative './feature-cli.rb'
require_relative './hotfix-cli.rb'

module GitFlower
  class CLI < Thor
    desc "feature SUBCOMMAND ...ARGS", "manage git-flow features"
    subcommand "feature", GitFlower::FeatureCLI

    desc "hotfix SUBCOMMAND ...ARGS", "manage git-flow hotfixes"
    subcommand "hotfix", GitFlower::HotfixCLI
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
git_flower-0.2.0 lib/git_flower/cli.rb
git_flower-0.1.3 lib/git_flower/cli.rb
git_flower-0.1.2 lib/git_flower/cli.rb
git_flower-0.1.1 lib/git_flower/cli.rb