Class: BSON::Code
- Inherits:
-
Object
- Object
- BSON::Code
- Defined in:
- lib/bson/types/code.rb
Overview
JavaScript code to be evaluated by MongoDB.
Instance Attribute Summary collapse
-
#code ⇒ Object
Hash mapping identifiers to their values.
-
#scope ⇒ Object
Hash mapping identifiers to their values.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(code, scope = {}) ⇒ Code
constructor
Wrap code to be evaluated by MongoDB.
- #inspect ⇒ Object
- #length ⇒ Object
- #to_bson_code ⇒ Object
Constructor Details
#initialize(code, scope = {}) ⇒ Code
Wrap code to be evaluated by MongoDB.
32 33 34 35 36 37 38 39 |
# File 'lib/bson/types/code.rb', line 32 def initialize(code, scope={}) @code = code @scope = scope unless @code.is_a?(String) raise ArgumentError, "BSON::Code must be in the form of a String; #{@code.class} is not allowed." end end |
Instance Attribute Details
#code ⇒ Object
Hash mapping identifiers to their values
25 26 27 |
# File 'lib/bson/types/code.rb', line 25 def code @code end |
#scope ⇒ Object
Hash mapping identifiers to their values
25 26 27 |
# File 'lib/bson/types/code.rb', line 25 def scope @scope end |
Instance Method Details
#==(other) ⇒ Object
45 46 47 48 |
# File 'lib/bson/types/code.rb', line 45 def ==(other) self.class == other.class && @code == other.code && @scope == other.scope end |
#inspect ⇒ Object
50 51 52 |
# File 'lib/bson/types/code.rb', line 50 def inspect "<BSON::Code:#{object_id} @data=\"#{@code}\" @scope=\"#{@scope.inspect}\">" end |
#length ⇒ Object
41 42 43 |
# File 'lib/bson/types/code.rb', line 41 def length @code.length end |
#to_bson_code ⇒ Object
54 55 56 |
# File 'lib/bson/types/code.rb', line 54 def to_bson_code self end |