Module: Jekyll::WhereInOut

Defined in:
jekyll/_plugins/where-inout.rb

Instance Method Summary collapse

Instance Method Details

#where2(input, property1, property2, value) ⇒ Object



19
20
21
22
23
# File 'jekyll/_plugins/where-inout.rb', line 19

def where2(input, property1, property2, value)
  return input unless input.is_a?(Enumerable)
  input = input.values if input.is_a?(Hash)
  input.select { |object| item_property(item_property(object, property1) || {}, property2) == value }
end

#where3(input, property1, property2, property3, value) ⇒ Object



24
25
26
27
28
# File 'jekyll/_plugins/where-inout.rb', line 24

def where3(input, property1, property2, property3, value)
  return input unless input.is_a?(Enumerable)
  input = input.values if input.is_a?(Hash)
  input.select { |object| item_property(item_property(item_property(object, property1) || {}, property2) || {}, property3) == value }
end

#where_in(input, property, values) ⇒ Object

Raises:

  • (ArgumentError)


31
32
33
34
35
36
# File 'jekyll/_plugins/where-inout.rb', line 31

def where_in(input, property, values)
  raise ArgumentError.new("Invalid values arg: '#{values}' is not an Array.") unless values.is_a?(Array)
  return input unless input.is_a?(Enumerable)
  input = input.values if input.is_a?(Hash)
  input.select { |object| values.include? item_property(object, property) }
end

#where_in2(input, property1, property2, values) ⇒ Object

Raises:

  • (ArgumentError)


37
38
39
40
41
42
# File 'jekyll/_plugins/where-inout.rb', line 37

def where_in2(input, property1, property2, values)
  raise ArgumentError.new("Invalid values arg: '#{values}' is not an Array.") unless values.is_a?(Array)
  return input unless input.is_a?(Enumerable)
  input = input.values if input.is_a?(Hash)
  input.select { |object| values.include? item_property(item_property(object, property1) || {}, property2) }
end

#where_in3(input, property1, property2, property3, values) ⇒ Object

Raises:

  • (ArgumentError)


43
44
45
46
47
48
# File 'jekyll/_plugins/where-inout.rb', line 43

def where_in3(input, property1, property2, property3, values)
  raise ArgumentError.new("Invalid values arg: '#{values}' is not an Array.") unless values.is_a?(Array)
  return input unless input.is_a?(Enumerable)
  input = input.values if input.is_a?(Hash)
  input.select { |object| values.include? item_property(item_property(item_property(object, property1) || {}, property2) || {}, property3) }
end

#where_in_contains(input, property, search_target) ⇒ Object



70
71
72
73
74
75
76
77
78
79
80
# File 'jekyll/_plugins/where-inout.rb', line 70

def where_in_contains(input, property, search_target)
  # raise ArgumentError.new("Invalid values arg: '#{values}' is not an Array.") unless values.is_a?(Array)
  return input unless input.is_a?(Enumerable)
  input = input.values if input.is_a?(Hash)
  input.select { |object| if item_property(object, property).nil? 
                            false 
                          else
                            item_property(object, property).to_s.include? search_target
                          end
                           }
end

#where_out(input, property, values) ⇒ Object

Raises:

  • (ArgumentError)


50
51
52
53
54
55
# File 'jekyll/_plugins/where-inout.rb', line 50

def where_out(input, property, values)
  raise ArgumentError.new("Invalid values arg: '#{values}' is not an Array.") unless values.is_a?(Array)
  return input unless input.is_a?(Enumerable)
  input = input.values if input.is_a?(Hash)
  input.select { |object| ! values.include? item_property(object, property) }
end

#where_out2(input, property1, property2, values) ⇒ Object

Raises:

  • (ArgumentError)


56
57
58
59
60
61
# File 'jekyll/_plugins/where-inout.rb', line 56

def where_out2(input, property1, property2, values)
  raise ArgumentError.new("Invalid values arg: '#{values}' is not an Array.") unless values.is_a?(Array)
  return input unless input.is_a?(Enumerable)
  input = input.values if input.is_a?(Hash)
  input.select { |object| ! values.include? item_property(item_property(object, property1) || {}, property2) }
end

#where_out3(input, property1, property2, property3, values) ⇒ Object

Raises:

  • (ArgumentError)


62
63
64
65
66
67
# File 'jekyll/_plugins/where-inout.rb', line 62

def where_out3(input, property1, property2, property3, values)
  raise ArgumentError.new("Invalid values arg: '#{values}' is not an Array.") unless values.is_a?(Array)
  return input unless input.is_a?(Enumerable)
  input = input.values if input.is_a?(Hash)
  input.select { |object| ! values.include? item_property(item_property(item_property(object, property1) || {}, property2) || {}, property3) }
end