Sha256: 12f98b11ca601fa61d014849b2a7325cca74aeaddd86d49236769e30d3349dc2

Contents?: true

Size: 266 Bytes

Versions: 5

Compression:

Stored size: 266 Bytes

Contents

require 'thor'

module Cli
  # Thor subcommand for feature related commands
  class Feature < Thor
    desc 'create <feature_name>', 'Creates a feature branch'
    def create(feature_name)
      cmd = Feature::Create.new feature_name
      cmd.run
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
straight_line-0.1.4.0 lib/straight_line/cli/feature.rb
straight_line-0.1.3.0 lib/straight_line/cli/feature.rb
straight_line-0.1.2.0 lib/straight_line/cli/feature.rb
straight_line-0.1.1.0 lib/straight_line/cli/feature.rb
straight_line-0.1.0.0 lib/cli/feature.rb