File: json_pointer.rb

package info (click to toggle)
ruby-brandur-json-schema 0.19.1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 376 kB
  • sloc: ruby: 3,764; makefile: 6
file content (7 lines) | stat: -rw-r--r-- 143 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
require_relative "json_pointer/evaluator"

module JsonPointer
  def self.evaluate(data, path)
    Evaluator.new(data).evaluate(path)
  end
end