lib/jmespath/nodes.rb in jmespath-1.2.4 vs lib/jmespath/nodes.rb in jmespath-1.3.0

- old
+ new

@@ -15,30 +15,31 @@ def chains_with?(other) false end end + + require 'jmespath/nodes/subexpression' + require 'jmespath/nodes/and' + require 'jmespath/nodes/comparator' + require 'jmespath/nodes/comparator' + require 'jmespath/nodes/condition' + require 'jmespath/nodes/current' + require 'jmespath/nodes/expression' + require 'jmespath/nodes/field' + require 'jmespath/nodes/flatten' + require 'jmespath/nodes/function' + require 'jmespath/nodes/index' + require 'jmespath/nodes/literal' + require 'jmespath/nodes/multi_select_hash' + require 'jmespath/nodes/multi_select_list' + require 'jmespath/nodes/not' + require 'jmespath/nodes/or' + require 'jmespath/nodes/pipe' + require 'jmespath/nodes/projection' + require 'jmespath/nodes/projection' + require 'jmespath/nodes/projection' + require 'jmespath/nodes/slice' - autoload :And, 'jmespath/nodes/and' - autoload :Comparator, 'jmespath/nodes/comparator' - autoload :Comparators, 'jmespath/nodes/comparator' - autoload :Condition, 'jmespath/nodes/condition' - autoload :Current, 'jmespath/nodes/current' - autoload :Expression, 'jmespath/nodes/expression' - autoload :Field, 'jmespath/nodes/field' - autoload :Flatten, 'jmespath/nodes/flatten' - autoload :Function, 'jmespath/nodes/function' - autoload :Index, 'jmespath/nodes/index' - autoload :Literal, 'jmespath/nodes/literal' - autoload :MultiSelectHash, 'jmespath/nodes/multi_select_hash' - autoload :MultiSelectList, 'jmespath/nodes/multi_select_list' - autoload :Not, 'jmespath/nodes/not' - autoload :Or, 'jmespath/nodes/or' - autoload :Pipe, 'jmespath/nodes/pipe' - autoload :Projection, 'jmespath/nodes/projection' - autoload :ArrayProjection, 'jmespath/nodes/projection' - autoload :ObjectProjection, 'jmespath/nodes/projection' - autoload :Slice, 'jmespath/nodes/slice' - autoload :Subexpression, 'jmespath/nodes/subexpression' end end