In Files

  • ruby-3.1.2/lib/rubygems/commands/signin_command.rb

Parent

Methods

Included Modules

Files

Class/Module Index [+]

Quicksearch

Gem::Commands::SigninCommand

Public Class Methods

new() click to toggle source
 
               # File ruby-3.1.2/lib/rubygems/commands/signin_command.rb, line 8
def initialize
  super 'signin', 'Sign in to any gemcutter-compatible host. '\
        'It defaults to https://rubygems.org'

  add_option('--host HOST', 'Push to another gemcutter-compatible host') do |value, options|
    options[:host] = value
  end

  add_otp_option
end
            

Public Instance Methods

execute() click to toggle source
 
               # File ruby-3.1.2/lib/rubygems/commands/signin_command.rb, line 30
def execute
  sign_in options[:host]
end