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
86b943fd
Unverified
Commit
86b943fd
authored
Dec 20, 2017
by
Dimitris Koutsogiorgas
Committed by
GitHub
Dec 20, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7292 from dnkoutso/dimitris/bring_back_method
Restore `development_pod_targets` public method in installer
parents
dfaa7cb1
18660868
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
CHANGELOG.md
CHANGELOG.md
+3
-2
installer.rb
lib/cocoapods/installer.rb
+13
-0
No files found.
CHANGELOG.md
View file @
86b943fd
...
...
@@ -12,8 +12,9 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
##### Bug Fixes
*
None.
*
Restore
`development_pod_targets`
public method in installer
[
Dimitris Koutsogiorgas
](
https://github.com/dnkoutso
)
[
#7292
](
https://github.com/CocoaPods/CocoaPods/pull/7292
)
## 1.4.0.rc.1 (2017-12-16)
...
...
lib/cocoapods/installer.rb
View file @
86b943fd
...
...
@@ -644,6 +644,19 @@ module Pod
#-------------------------------------------------------------------------#
public
# @return [Array<PodTarget>] The targets of the development pods generated by
# the installation process. This can be used as a convenience method for external scripts.
#
def
development_pod_targets
pod_targets
.
select
do
|
pod_target
|
sandbox
.
development_pods
.
keys
.
include?
(
pod_target
.
pod_name
)
end
end
#-------------------------------------------------------------------------#
private
# @!group Private helpers
...
...
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