Class: PodBuilder::Command::Info

Inherits:
Object
  • Object
show all
Defined in:
lib/pod_builder/command/info.rb

Class Method Summary collapse

Class Method Details

.call(options) ⇒ Object



7
8
9
10
11
12
13
14
15
# File 'lib/pod_builder/command/info.rb', line 7

def self.call(options)          
  Configuration.check_inited

  info = PodBuilder::Info.generate_info()
  
  puts JSON.pretty_generate(info)
  
  return true
end