Method: VMC::Cli::Command::Base#frameworks_info

Defined in:
lib/cli/commands/base.rb

#frameworks_infoObject



216
217
218
219
220
221
222
223
224
# File 'lib/cli/commands/base.rb', line 216

def frameworks_info
  return @frameworks if @frameworks
  info = client_info
  @frameworks = []
  if info[:frameworks]
    info[:frameworks].each_value { |f| @frameworks << [f[:name]] }
  end
  @frameworks
end