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
c5d3cc85
Commit
c5d3cc85
authored
Jul 04, 2016
by
Boris Bügling
Committed by
GitHub
Jul 04, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5528 from CocoaPods/xcode-8-codesigning
Fix code signing in Xcode 8
parents
f6db4322
e07ba169
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
7 deletions
+15
-7
CHANGELOG.md
CHANGELOG.md
+4
-0
pods_project_generator.rb
lib/cocoapods/installer/xcode/pods_project_generator.rb
+2
-0
aggregate_target_installer.rb
...code/pods_project_generator/aggregate_target_installer.rb
+7
-6
pod_target_installer.rb
...ller/xcode/pods_project_generator/pod_target_installer.rb
+1
-0
cocoapods-integration-specs
spec/cocoapods-integration-specs
+1
-1
No files found.
CHANGELOG.md
View file @
c5d3cc85
...
@@ -70,6 +70,10 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
...
@@ -70,6 +70,10 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
[
Boris Bügling
](
https://github.com/neonichu
)
[
Boris Bügling
](
https://github.com/neonichu
)
[
#5529
](
https://github.com/CocoaPods/CocoaPods/issues/5529
)
[
#5529
](
https://github.com/CocoaPods/CocoaPods/issues/5529
)
*
Fix linting with Xcode 8 by disabling it entirely.
[
Boris Bügling
](
https://github.com/neonichu
)
[
#5528
](
https://github.com/CocoaPods/CocoaPods/issues/5528
)
## 1.0.1 (2016-06-02)
## 1.0.1 (2016-06-02)
...
...
lib/cocoapods/installer/xcode/pods_project_generator.rb
View file @
c5d3cc85
...
@@ -138,6 +138,8 @@ module Pod
...
@@ -138,6 +138,8 @@ module Pod
build_configuration
.
build_settings
[
'TVOS_DEPLOYMENT_TARGET'
]
=
tvos_deployment_target
.
to_s
if
tvos_deployment_target
build_configuration
.
build_settings
[
'TVOS_DEPLOYMENT_TARGET'
]
=
tvos_deployment_target
.
to_s
if
tvos_deployment_target
build_configuration
.
build_settings
[
'STRIP_INSTALLED_PRODUCT'
]
=
'NO'
build_configuration
.
build_settings
[
'STRIP_INSTALLED_PRODUCT'
]
=
'NO'
build_configuration
.
build_settings
[
'CLANG_ENABLE_OBJC_ARC'
]
=
'YES'
build_configuration
.
build_settings
[
'CLANG_ENABLE_OBJC_ARC'
]
=
'YES'
build_configuration
.
build_settings
[
'CODE_SIGNING_REQUIRED'
]
=
'NO'
build_configuration
.
build_settings
[
'PROVISIONING_PROFILE_SPECIFIER'
]
=
'NO_SIGNING/'
end
end
end
end
end
end
...
...
lib/cocoapods/installer/xcode/pods_project_generator/aggregate_target_installer.rb
View file @
c5d3cc85
...
@@ -45,12 +45,13 @@ module Pod
...
@@ -45,12 +45,13 @@ module Pod
#
#
def
custom_build_settings
def
custom_build_settings
settings
=
{
settings
=
{
'MACH_O_TYPE'
=>
'staticlib'
,
'CODE_SIGN_IDENTITY[sdk=iphoneos*]'
=>
''
,
'OTHER_LDFLAGS'
=>
''
,
'MACH_O_TYPE'
=>
'staticlib'
,
'OTHER_LIBTOOLFLAGS'
=>
''
,
'OTHER_LDFLAGS'
=>
''
,
'PODS_ROOT'
=>
'$(SRCROOT)'
,
'OTHER_LIBTOOLFLAGS'
=>
''
,
'PRODUCT_BUNDLE_IDENTIFIER'
=>
'org.cocoapods.${PRODUCT_NAME:rfc1034identifier}'
,
'PODS_ROOT'
=>
'$(SRCROOT)'
,
'SKIP_INSTALL'
=>
'YES'
,
'PRODUCT_BUNDLE_IDENTIFIER'
=>
'org.cocoapods.${PRODUCT_NAME:rfc1034identifier}'
,
'SKIP_INSTALL'
=>
'YES'
,
}
}
super
.
merge
(
settings
)
super
.
merge
(
settings
)
end
end
...
...
lib/cocoapods/installer/xcode/pods_project_generator/pod_target_installer.rb
View file @
c5d3cc85
...
@@ -54,6 +54,7 @@ module Pod
...
@@ -54,6 +54,7 @@ module Pod
settings
[
'PRIVATE_HEADERS_FOLDER_PATH'
]
=
''
settings
[
'PRIVATE_HEADERS_FOLDER_PATH'
]
=
''
settings
[
'PUBLIC_HEADERS_FOLDER_PATH'
]
=
''
settings
[
'PUBLIC_HEADERS_FOLDER_PATH'
]
=
''
end
end
settings
[
'CODE_SIGN_IDENTITY[sdk=iphoneos*]'
]
=
''
settings
settings
end
end
...
...
cocoapods-integration-specs
@
80dd96be
Subproject commit
409958a75378ff70582af2fbabb1441c551ed1c7
Subproject commit
80dd96be49b786594986f612476c3342c54f2f71
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