diff options
author | Matthew Draper <matthew@trebex.net> | 2017-12-06 23:22:28 +1030 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-06 23:22:28 +1030 |
commit | aa11ad9129b65e637c05cc4b26a2cbbff6f143c2 (patch) | |
tree | 95e60e1280aec63222856ef4e494947eb0913092 /lib/arel/nodes/true.rb | |
parent | 5f25b0aa7fafc1a91605117f8bce700466e0d663 (diff) | |
parent | ff53df96875de84ee02895772b59448f35a5a0c2 (diff) | |
download | rails-aa11ad9129b65e637c05cc4b26a2cbbff6f143c2.tar.gz rails-aa11ad9129b65e637c05cc4b26a2cbbff6f143c2.tar.bz2 rails-aa11ad9129b65e637c05cc4b26a2cbbff6f143c2.zip |
Merge pull request #449 from kbrock/expr_node
Introduce Expression Node
Diffstat (limited to 'lib/arel/nodes/true.rb')
-rw-r--r-- | lib/arel/nodes/true.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/arel/nodes/true.rb b/lib/arel/nodes/true.rb index bb9d8c1414..fdb8ed2095 100644 --- a/lib/arel/nodes/true.rb +++ b/lib/arel/nodes/true.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true module Arel module Nodes - class True < Arel::Nodes::Node + class True < Arel::Nodes::NodeExpression def hash self.class.hash end |