module Bake::Type::Output
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/type/output.rb, line 13 def self.composite? false end
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/type/output.rb, line 17 def self.parse(input) case input when "-" return $stdout when IO, StringIO return input else File.open(input, "w") end end