Class: Sumodev::Commands::Push::AuthorizedKeys

Inherits:
Object
  • Object
show all
Defined in:
lib/sumodev/commands/push.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(file_contents) ⇒ AuthorizedKeys

Returns a new instance of AuthorizedKeys.



98
99
100
# File 'lib/sumodev/commands/push.rb', line 98

def initialize(file_contents)
  @contents = parse!(file_contents)
end

Instance Attribute Details

#contentsObject (readonly)

Returns the value of attribute contents.



96
97
98
# File 'lib/sumodev/commands/push.rb', line 96

def contents
  @contents
end

Instance Method Details

#add(key) ⇒ Object



102
103
104
# File 'lib/sumodev/commands/push.rb', line 102

def add key
  @contents[key[:key]] = key
end

#remove(key) ⇒ Object



106
107
108
# File 'lib/sumodev/commands/push.rb', line 106

def remove key
  @contents.delete(key[:key])
end

#to_ioObject



116
117
118
# File 'lib/sumodev/commands/push.rb', line 116

def to_io
  StringIO.new(to_s)
end

#to_sObject



110
111
112
113
114
# File 'lib/sumodev/commands/push.rb', line 110

def to_s
  @contents.collect do |identity, k|
    "#{k[:optional]}ssh-#{k[:protocol]} #{k[:key]} #{k[:identity]}\n"
  end.join
end