Method: TargetConfiguration#initialize
- Defined in:
- lib/target_configuration.rb
#initialize(name, target) ⇒ TargetConfiguration
Returns a new instance of TargetConfiguration.
5 6 7 8 9 10 11 |
# File 'lib/target_configuration.rb', line 5 def initialize(name, target) @name = name @target = target @pods = [] @scripts = [] @options = {} end |