Commit d8297f70 authored by Marius Rackwitz's avatar Marius Rackwitz

[Target] Move #target_definition to AggregateTarget

parent 325986e3
...@@ -6,11 +6,6 @@ module Pod ...@@ -6,11 +6,6 @@ module Pod
# This class is used to represent both the targets and their libraries. # This class is used to represent both the targets and their libraries.
# #
class Target class Target
# @return [TargetDefinition] the target definition of the Podfile that
# generated this target.
#
attr_reader :target_definition
# @return [Sandbox] The sandbox where the Pods should be installed. # @return [Sandbox] The sandbox where the Pods should be installed.
# #
attr_reader :sandbox attr_reader :sandbox
......
...@@ -3,6 +3,10 @@ module Pod ...@@ -3,6 +3,10 @@ module Pod
# of the single Pods. The client targets will then depend on this one. # of the single Pods. The client targets will then depend on this one.
# #
class AggregateTarget < Target class AggregateTarget < Target
# @return [TargetDefinition] the target definition of the Podfile that
# generated this target.
attr_reader :target_definition
# Initialize a new instance # Initialize a new instance
# #
# @param [TargetDefinition] target_definition @see target_definition # @param [TargetDefinition] target_definition @see target_definition
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment