Method: Command::Env#call

Defined in:
lib/command/env.rb

#callObject



15
16
17
18
19
20
# File 'lib/command/env.rb', line 15

def call
  cp.fetch_gvc!.dig("spec", "env").map do |prop|
    # NOTE: atm no special chars handling, consider adding if needed
    puts "#{prop['name']}=#{prop['value']}"
  end
end