Class: Parse::Bytes

Inherits:
Object
  • Object
show all
Defined in:
lib/parse/datatypes.rb

Overview

Bytes

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ Bytes

Returns a new instance of Bytes.



128
129
130
131
# File 'lib/parse/datatypes.rb', line 128

def initialize(data)
  bytes = data['base64']
  @value = Base64.decode64(bytes)
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *args, &block) ⇒ Object



147
148
149
150
151
152
153
# File 'lib/parse/datatypes.rb', line 147

def method_missing(method, *args, &block)
  if value.respond_to?(method)
    value.send(method, *args, &block)
  else
    super(method)
  end
end

Instance Attribute Details

#valueObject

Returns the value of attribute value.



126
127
128
# File 'lib/parse/datatypes.rb', line 126

def value
  @value
end

Instance Method Details

#<=>(other) ⇒ Object



143
144
145
# File 'lib/parse/datatypes.rb', line 143

def <=>(other)
  value <=> other.value
end

#eql?(other) ⇒ Boolean Also known as: ==

Returns:

  • (Boolean)


133
134
135
136
# File 'lib/parse/datatypes.rb', line 133

def eql?(other)
  self.class.equal?(other.class) &&
    value == other.value
end

#hashObject



139
140
141
# File 'lib/parse/datatypes.rb', line 139

def hash
  value.hash
end

#respond_to?(method, include_private = false) ⇒ Boolean

Returns:

  • (Boolean)


155
156
157
# File 'lib/parse/datatypes.rb', line 155

def respond_to?(method, include_private = false)
  super || value.respond_to?(method, include_private)
end

#to_h(*_a) ⇒ Object Also known as: as_json



159
160
161
162
163
164
# File 'lib/parse/datatypes.rb', line 159

def to_h(*_a)
  {
    Protocol::KEY_TYPE => Protocol::TYPE_BYTES,
    'base64' => Base64.encode64(@value)
  }
end

#to_json(*a) ⇒ Object



167
168
169
# File 'lib/parse/datatypes.rb', line 167

def to_json(*a)
  to_h.to_json(*a)
end