Sha256: fcc874dc1add00299ab4d6d89e3493a7a49ce671c8bd5c5fbb6314c5361805bd
Contents?: true
Size: 378 Bytes
Versions: 7
Compression:
Stored size: 378 Bytes
Contents
# frozen_string_literal: true module Nocode module Steps module Deserialize # take a specified register and parse it as JSON to produce Ruby object(s). class Json < Step option :register def perform input = registers[register_option] registers[register_option] = JSON.parse(input) end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems