Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
cocoapods
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
cocoapods
Commits
d0081ee0
Commit
d0081ee0
authored
Oct 17, 2015
by
Samuel Giddins
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Docs] Add docs for user_project properties
parent
74f45278
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
3 deletions
+15
-3
target_inspection_result.rb
lib/cocoapods/installer/analyzer/target_inspection_result.rb
+2
-0
target_inspector.rb
lib/cocoapods/installer/analyzer/target_inspector.rb
+5
-0
post_install_hooks_context.rb
lib/cocoapods/installer/post_install_hooks_context.rb
+5
-0
aggregate_target.rb
lib/cocoapods/target/aggregate_target.rb
+3
-3
No files found.
lib/cocoapods/installer/analyzer/target_inspection_result.rb
View file @
d0081ee0
...
@@ -36,6 +36,8 @@ module Pod
...
@@ -36,6 +36,8 @@ module Pod
#
#
attr_accessor
:recommends_frameworks
attr_accessor
:recommends_frameworks
# @return [Xcodeproj::Project] the user's Xcode project
#
attr_accessor
:project
attr_accessor
:project
end
end
end
end
...
...
lib/cocoapods/installer/analyzer/target_inspector.rb
View file @
d0081ee0
...
@@ -25,6 +25,8 @@ module Pod
...
@@ -25,6 +25,8 @@ module Pod
# Inspect the #target_definition
# Inspect the #target_definition
#
#
# @raise If no `user_project` is set
#
# @return [TargetInspectionResult]
# @return [TargetInspectionResult]
#
#
def
compute_results
def
compute_results
...
@@ -74,6 +76,9 @@ module Pod
...
@@ -74,6 +76,9 @@ module Pod
path
path
end
end
# @return [Xcodeproj::Project] the user's Xcode project, used for target
# inspection
#
attr_accessor
:user_project
attr_accessor
:user_project
#-----------------------------------------------------------------------#
#-----------------------------------------------------------------------#
...
...
lib/cocoapods/installer/post_install_hooks_context.rb
View file @
d0081ee0
...
@@ -8,6 +8,8 @@ module Pod
...
@@ -8,6 +8,8 @@ module Pod
#
#
attr_accessor
:sandbox_root
attr_accessor
:sandbox_root
# @return [Project] The Pods Xcode project.
#
attr_accessor
:pods_project
attr_accessor
:pods_project
# @return [Array<UmbrellaTargetDescription>] The list of
# @return [Array<UmbrellaTargetDescription>] The list of
...
@@ -50,6 +52,9 @@ module Pod
...
@@ -50,6 +52,9 @@ module Pod
# Pure data class which describes and umbrella target.
# Pure data class which describes and umbrella target.
#
#
class
UmbrellaTargetDescription
class
UmbrellaTargetDescription
# @return [Xcodeproj::Project] The user project into which this target
# is integrated.
#
attr_accessor
:user_project
attr_accessor
:user_project
# @return [String] The path of the user project
# @return [String] The path of the user project
...
...
lib/cocoapods/target/aggregate_target.rb
View file @
d0081ee0
...
@@ -54,6 +54,9 @@ module Pod
...
@@ -54,6 +54,9 @@ module Pod
#
#
attr_accessor
:client_root
attr_accessor
:client_root
# @return [Xcodeproj::Project] the user project that this target will
# integrate as identified by the analyzer.
#
attr_accessor
:user_project
attr_accessor
:user_project
# @return [Pathname] the path of the user project that this target will
# @return [Pathname] the path of the user project that this target will
...
@@ -73,9 +76,6 @@ module Pod
...
@@ -73,9 +76,6 @@ module Pod
# List all user targets that will be integrated by this #target.
# List all user targets that will be integrated by this #target.
#
#
# @param [Xcodeproj::Project] project
# The project to search for the user targets
#
# @return [Array<PBXNativeTarget>]
# @return [Array<PBXNativeTarget>]
#
#
def
user_targets
def
user_targets
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment