Flowdock
method

create_ext_from_string

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: ExtensionFactory
create_ext_from_string(str) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File ext/openssl/lib/openssl/x509.rb, line 31
      def create_ext_from_string(str) # "oid = critical, value"
        oid, value = str.split(/=/, 2)
        oid.strip!
        value.strip!
        create_ext(oid, value)
      end
Register or log in to add new notes.