Sha256: 73849de723645efe239e454501083ae135eb3e26aa7972c5b78a1f7a4c1f4efa
Contents?: true
Size: 1.48 KB
Versions: 3
Compression:
Stored size: 1.48 KB
Contents
module Browser Size = Struct.new(:width, :height) Position = Struct.new(:x, :y) end class Object # Encode as URI. # # @return [String] the {Object#to_s} encoded for usage as URI def encode_uri to_s.encode_uri end # Encode as URI component. # # @return [String] the {Object#to_s} encoded for usage as URI component def encode_uri_component to_s.encode_uri_component end end class String # Encode as URI component. # # @return [String] the string encoded for usage as URI component def encode_uri_component `encodeURIComponent(self)` end # Encode as URI. # # @return [String] the string encoded as URI def encode_uri `encodeURI(self)` end # Decode as URI component. # # @return [String] the string decoded as URI component def decode_uri_component `decodeURIComponent(self)` end # Decode as URI. # # @return [String] the string decoded as URI def decode_uri `decodeURI(self)` end end class Hash # Decode an URL encoded form to a {Hash}. # # @param string [String] the URL encoded form # # @return [Hash] def self.decode_uri(string) self[string.split(?&).map {|part| name, value = part.split(?=) [name.decode_uri_component, value.decode_uri_component] }] end # Encode the Hash to an URL form. # # @return [String] the URL encoded form def encode_uri map {|name, value| "#{name.to_s.encode_uri_component}=#{value.to_s.encode_uri_component}" }.join(?&) end end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
diamonds-0.1.5 | lib/diamonds/opal/browser/utils.rb |
opal-browser-0.2.0 | opal/browser/utils.rb |
opal-browser-0.2.0.beta1 | opal/browser/utils.rb |