Sha256: 52400ebab8f02b7a4f30b25ebdbddfdbe374414653a752df0d0af37e254f2fe5

Contents?: true

Size: 527 Bytes

Versions: 1

Compression:

Stored size: 527 Bytes

Contents

# frozen_string_literal: true

%w[thor downup awesome_print tty-command].each { |f| require f }

# TODO: refactor these code later
Dir[File.join(File.expand_path(__dir__), 'install_gem_local', 'action/*.rb')].each { |f| require f }
Dir[File.join(File.expand_path(__dir__), 'install_gem_local', '**/*.rb')].each { |f| require f }

module InstallGemLocal
  class App < Thor
    desc 'methods_description', 'list all methods description'
    def methods_desc
      puts InstallGemLocal::Utilization.show_methods
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
install_gem_local-1.0.1 lib/install_gem_local.rb