Sha256: 325f434cc9bddeb1da21438781b3aa57bfdcd71cf1de19ef407786f384a91fe0

Contents?: true

Size: 1.16 KB

Versions: 12

Compression:

Stored size: 1.16 KB

Contents

require "cardio/command"

# NOTE: the distinction between Cardio::Commands and Cardio::Command is a little awkward
# but not without some justification. Traditionally, there was only Cardio::Commands.
# It was required by both script/card and decko/commands. The problem was that it called
# the run command (see below), which was necessary in the script/card context but
# problematic in the decko/commands context, where we wanted only the superclass instance
# to call #run.

# Since script/card is generated in installations and is hard to update, we didn't want
# to change the name of the file it required, so we kept cardio/commands for that purpose
# and made it inherit from Cardio::Commands, from which Decko::Commands also inherits.

# We could have used CommandsBase (and may yet move to that), but it's worth noting
# that this might have caused its own confusion with CommandBase, a base class for
# classes that handle specific kinds of commands.

module Cardio
  # manage different types of commands that can be run via bin/card (and bin/decko)
  class Commands < Command
    Command.bin_name = "card"

    new(ARGV).run unless ENV["CARDIO_COMMANDS"] == "NO_RUN"
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
card-1.108.1 lib/cardio/commands.rb
card-1.108.0 lib/cardio/commands.rb
card-1.107.0 lib/cardio/commands.rb
card-1.106.0 lib/cardio/commands.rb
card-1.105.6 lib/cardio/commands.rb
card-1.105.5 lib/cardio/commands.rb
card-1.105.4 lib/cardio/commands.rb
card-1.105.3 lib/cardio/commands.rb
card-1.105.2.pre1 lib/cardio/commands.rb
card-1.105.2 lib/cardio/commands.rb
card-1.105.1 lib/cardio/commands.rb
card-1.105.0 lib/cardio/commands.rb