Sha256: deb396609754c99b8545a548a17339b5fa43c7f9150c1450b81435c10ddcc6ac
Contents?: true
Size: 531 Bytes
Versions: 1
Compression:
Stored size: 531 Bytes
Contents
# frozen_string_literal: true %w[thor downup awesome_print tty-command pry].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.0 | lib/install_gem_local.rb |