Class: Qdsl::InnerJoin
- Inherits:
-
Object
- Object
- Qdsl::InnerJoin
- Defined in:
- lib/inner_join.rb
Instance Attribute Summary collapse
-
#predicate_block ⇒ Object
readonly
Returns the value of attribute predicate_block.
-
#source ⇒ Object
readonly
Returns the value of attribute source.
Instance Method Summary collapse
-
#initialize(source, predicate_block) ⇒ InnerJoin
constructor
A new instance of InnerJoin.
Constructor Details
#initialize(source, predicate_block) ⇒ InnerJoin
5 6 7 8 |
# File 'lib/inner_join.rb', line 5 def initialize(source, predicate_block) @source = source @predicate_block = predicate_block end |
Instance Attribute Details
#predicate_block ⇒ Object (readonly)
Returns the value of attribute predicate_block.
3 4 5 |
# File 'lib/inner_join.rb', line 3 def predicate_block @predicate_block end |
#source ⇒ Object (readonly)
Returns the value of attribute source.
3 4 5 |
# File 'lib/inner_join.rb', line 3 def source @source end |