class Bake::Format::NDJSON
Attributes
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/format/ndjson.rb, line 11 def self.input(file) new(file) end
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/format/ndjson.rb, line 18 def initialize(file) @file = file end
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/format/ndjson.rb, line 15 def self.output(file, value) end
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/format/ndjson.rb, line 24 def each return to_enum unless block_given? @file.each_line do |line| yield JSON.parse(line) end end