class Swiftproj::GenerateXcodeprojCommand

Public Class Methods

description() click to toggle source
# File lib/swiftproj/commands/generate_xcodeproj_command.rb, line 3
def self.description()
  return "Generates a xcconfig file from podspec file"
end

Public Instance Methods

run(options) click to toggle source
# File lib/swiftproj/commands/generate_xcodeproj_command.rb, line 7
def run(options)
  argv = []
  for key, value in options
    argv.push(key)
    argv.push(value) unless value.nil?
  end
  @core.generate_xcodeproj(argv)
end