Classes: Filter, Parser
"0.0.5"
6 7 8 9
# File 'lib/hpath.rb', line 6 def self.get(object, hpath_string) hpath = Hpath::Parser.parse(hpath_string) _get(object, hpath[:path]) end
11 12 13 14
# File 'lib/hpath.rb', line 11 def self.set(object, hpath_string, value) hpath = Hpath::Parser.parse(hpath_string) _set(object, hpath[:path], value) end