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
70c4f8aa
Commit
70c4f8aa
authored
Jul 25, 2014
by
Fabio Pelosin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2332 from lordkev/fix-xctest-xcode6
Fixes an issue where XCTest is missing in Xcode 6
parents
c2366c33
6986f18b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
CHANGELOG.md
CHANGELOG.md
+5
-1
xcconfig_helper.rb
lib/cocoapods/generator/xcconfig/xcconfig_helper.rb
+2
-0
xcconfig_helper_spec.rb
spec/unit/generator/xcconfig/xcconfig_helper_spec.rb
+2
-0
No files found.
CHANGELOG.md
View file @
70c4f8aa
...
...
@@ -12,7 +12,7 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
[
#2060
](
https://github.com/CocoaPods/CocoaPods/issues/2060
)
*
Fixed
`pod outdated`
to not include subspecs.
[
Ash Furrow
](
ashfurrow
]
[
Ash Furrow
](
ashfurrow
)
[
#2136
](
https://github.com/CocoaPods/CocoaPods/issues/2136
)
*
Always evaluate podspecs from the original podspec directory. This fixes
...
...
@@ -25,6 +25,10 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
[
Fabio Pelosin
][
irrationalfab
]
[
Core#132
](
https://github.com/CocoaPods/Core/issues/132
)
*
Fixed missing XCTest framework in Xcode 6
[
Paul Williamson
](
squarefrog
)
[
#2296
](
https://github.com/CocoaPods/CocoaPods/issues/2296
)
## 0.33.1
...
...
lib/cocoapods/generator/xcconfig/xcconfig_helper.rb
View file @
70c4f8aa
...
...
@@ -111,6 +111,8 @@ module Pod
else
search_paths_to_add
<<
'"$(DEVELOPER_LIBRARY_DIR)/Frameworks"'
end
frameworks_path
=
'"$(PLATFORM_DIR)/Developer/Library/Frameworks"'
search_paths_to_add
<<
frameworks_path
search_paths_to_add
.
each
do
|
search_path
|
unless
search_paths
.
include?
(
search_path
)
search_paths
<<
' '
unless
search_paths
.
empty?
...
...
spec/unit/generator/xcconfig/xcconfig_helper_spec.rb
View file @
70c4f8aa
...
...
@@ -188,6 +188,8 @@ module Pod
frameworks_search_paths
=
xcconfig
.
to_hash
[
'FRAMEWORK_SEARCH_PATHS'
]
frameworks_search_paths
.
should
.
include?
(
'$(inherited)'
)
frameworks_search_paths
.
should
.
include?
(
'"$(SDKROOT)/Developer/Library/Frameworks"'
)
frameworks_path
=
'"$(PLATFORM_DIR)/Developer/Library/Frameworks"'
frameworks_search_paths
.
should
.
include?
(
frameworks_path
)
frameworks_search_paths
.
should
.
not
.
include?
(
'"$(DEVELOPER_LIBRARY_DIR)/Frameworks"'
)
end
...
...
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