Method: RubyGPG2::StatusLine.parse
- Defined in:
- lib/ruby_gpg2/status_line.rb
.parse(line) ⇒ Object
17 18 19 20 21 22 23 24 |
# File 'lib/ruby_gpg2/status_line.rb', line 17 def self.parse(line) TYPES .fetch( line.match(TYPE_REGEX)[1], StatusLines::Unimplemented ) .parse(line) end |