class Pry::CommandSet

def import(*sets)

Returns:
  • (Pry::CommandSet) - Returns the reciever (a command set).

Parameters:
  • sets (Array) -- Command sets, all of the commands of which
def import(*sets)
  sets.each do |set|
    @commands.merge! set.to_hash
    helper_module.send :include, set.helper_module
  end
  self
end