class Me::Cli::Config
Public Instance Methods
git(identity, name=nil, email=nil)
click to toggle source
# File lib/me/cli.rb, line 55 def git(identity, name=nil, email=nil) render { GitConfigCommand[identity, name, email].call } end
ssh(identity, *keys)
click to toggle source
# File lib/me/cli.rb, line 60 def ssh(identity, *keys) render { SshConfigCommand[identity, keys].call } end