Sha256: f5b4c4b6ecef74eccad32838964501df0eb4da835337abef40656afcf9436643

Contents?: true

Size: 474 Bytes

Versions: 3

Compression:

Stored size: 474 Bytes

Contents

# frozen_string_literal: true

require "sod"

module Milestoner
  module CLI
    module Commands
      # Handles the building of milestone output.
      class Cache < Sod::Command
        include Import[:input, :logger]

        handle "cache"

        description "Manage cache."

        on Actions::Cache::Info
        on Actions::Cache::List
        on Actions::Cache::Find
        on Actions::Cache::Create
        on Actions::Cache::Delete
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
milestoner-17.11.0 lib/milestoner/cli/commands/cache.rb
milestoner-17.10.0 lib/milestoner/cli/commands/cache.rb
milestoner-17.9.0 lib/milestoner/cli/commands/cache.rb