Sha256: b003f044bc095bbbb710f81f78d5e84238d1b7c024dec33c62d8f2263d35c0f5

Contents?: true

Size: 1.1 KB

Versions: 25

Compression:

Stored size: 1.1 KB

Contents

# frozen_string_literal: true

require "clamp"

module Makit
  module Cli
    # Define the 'nuget_cache' subcommand
    #
    # nuget_cache Google.Protobuf
    # nuget_cache Google.Protobuf 3.27.2
    class NugetCacheCommand < Clamp::Command
      parameter "PACKAGE", "The package id", attribute_name: :package, required: true
      parameter "VERSION", "The package version", attribute_name: :version, default: nil

      def execute
        if version.nil?
          # look up the latest version of the package
          raise "TODO: implement latest version lookup"
        end

        # download the package
        url = "https://www.nuget.org/api/v2/package/#{package}/#{version}"
        if !url.nil?
          # download the package

          raise "TODO: implement package download"
          puts "url: #{url}"
          puts "relative directoyr: #{Makit::Environment.get_relative_directory(url)}"
          puts "work directory: #{Makit::Environment.get_work_directory(url)}"
        end
        puts "TODO: implement work command"
      end
    end

    def install_cache_package(package, version)
    end
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
makit-0.0.27 lib/makit/cli/nuget_cache.rb
makit-0.0.5 lib/makit/cli/nuget_cache.rb
makit-0.0.4 lib/makit/cli/nuget_cache.rb
makit-0.0.3 lib/makit/cli/nuget_cache.rb
makit-0.0.2 lib/makit/cli/nuget_cache.rb