class Tug::Project
Attributes
ipa_config[RW]
ipa_export_path[RW]
schemes[R]
workspace[R]
Public Class Methods
new(config)
click to toggle source
# File lib/tug/project/project.rb, line 9 def initialize(config) project_yaml = config['project'] @schemes = project_yaml['schemes'] @workspace = project_yaml['workspace'] @ipa_export_path = Dir.pwd end
Public Instance Methods
configure(options)
click to toggle source
# File lib/tug/project/project.rb, line 16 def configure(options) @ipa_export_path = options["export"] @ipa_config = options["build_config"] end