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
1b7d5ae3
Commit
1b7d5ae3
authored
Jun 21, 2015
by
Samuel E. Giddins
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3702 from CocoaPods/seg-fix-frameworks-script
[EmbedFrameworksScript] Allow submitting to the MAS
parents
75366ff6
4624227b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
4 deletions
+10
-4
CHANGELOG.md
CHANGELOG.md
+7
-1
embed_frameworks_script.rb
lib/cocoapods/generator/embed_frameworks_script.rb
+2
-2
cocoapods-integration-specs
spec/cocoapods-integration-specs
+1
-1
No files found.
CHANGELOG.md
View file @
1b7d5ae3
...
@@ -54,7 +54,7 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
...
@@ -54,7 +54,7 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
*
Cache globbing in
`PathList`
to speed up
`pod install`
.
*
Cache globbing in
`PathList`
to speed up
`pod install`
.
[
Vincent Isambart
](
https://github.com/vincentisambart
)
[
Vincent Isambart
](
https://github.com/vincentisambart
)
*
CocoaPods will validate your podfile and try to identify problems
*
CocoaPods will validate your podfile and try to identify problems
and conflicts in how you've specified the dependencies
and conflicts in how you've specified the dependencies
[
Hugo Tunius
](
https://github.com/k0nserv
)
[
Hugo Tunius
](
https://github.com/k0nserv
)
[
#995
](
https://github.com/CocoaPods/CocoaPods/issues/995
)
[
#995
](
https://github.com/CocoaPods/CocoaPods/issues/995
)
...
@@ -80,6 +80,12 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
...
@@ -80,6 +80,12 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
[
#2747
](
https://github.com/CocoaPods/CocoaPods/issues/2747
)
[
#2747
](
https://github.com/CocoaPods/CocoaPods/issues/2747
)
[
#2704
](
https://github.com/CocoaPods/CocoaPods/issues/2704
)
[
#2704
](
https://github.com/CocoaPods/CocoaPods/issues/2704
)
*
The embed frameworks script will now properly filter out symlinks to the
directories that are filtered, which fixes an issue when submitting to the
Mac App Store.
[
Samuel Giddins
](
https://github.com/segiddins
)
## 0.37.2
## 0.37.2
##### Enhancements
##### Enhancements
...
...
lib/cocoapods/generator/embed_frameworks_script.rb
View file @
1b7d5ae3
...
@@ -63,8 +63,8 @@ module Pod
...
@@ -63,8 +63,8 @@ module Pod
fi
fi
# use filter instead of exclude so missing patterns dont' throw errors
# use filter instead of exclude so missing patterns dont' throw errors
echo "rsync -av --filter
\"
- CVS/
\"
--filter
\"
- .svn/
\"
--filter
\"
- .git/
\"
--filter
\"
- .hg/
\"
--filter
\"
- Headers
/
\"
--filter
\"
- PrivateHeaders/
\"
--filter
\"
- Modules/
\"
${source} ${destination}"
echo "rsync -av --filter
\"
- CVS/
\"
--filter
\"
- .svn/
\"
--filter
\"
- .git/
\"
--filter
\"
- .hg/
\"
--filter
\"
- Headers
\"
--filter
\"
- PrivateHeaders
\"
--filter
\"
- Modules
\"
${source} ${destination}"
rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers
/" --filter "- PrivateHeaders/" --filter "- Modules/
" "${source}" "${destination}"
rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers
" --filter "- PrivateHeaders" --filter "- Modules
" "${source}" "${destination}"
# Resign the code if required by the build settings to avoid unstable apps
# Resign the code if required by the build settings to avoid unstable apps
if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then
if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then
code_sign "${destination}/$1"
code_sign "${destination}/$1"
...
...
cocoapods-integration-specs
@
5eb5a142
Subproject commit
d6193ae890a8d84d715efbc98e80efb2c4c0e264
Subproject commit
5eb5a14245f90d0a7cce21113a7fafaec022423f
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