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
32e84e15
Commit
32e84e15
authored
Oct 22, 2016
by
Ben Asher
Committed by
GitHub
Oct 22, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6063 from Bersaelor/copyresourcesscript_tv_target
[CopyResourcesScript] add target_device 'tv' for tvOS
parents
deda3dce
05723152
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
5 deletions
+9
-5
CHANGELOG.md
CHANGELOG.md
+3
-2
copy_resources_script.rb
lib/cocoapods/generator/copy_resources_script.rb
+3
-0
cocoapods-integration-specs
spec/cocoapods-integration-specs
+1
-1
integration.rb
spec/integration.rb
+2
-2
No files found.
CHANGELOG.md
View file @
32e84e15
...
@@ -12,7 +12,9 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
...
@@ -12,7 +12,9 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
##### Bug Fixes
##### Bug Fixes
*
None.
*
Add target-device tvOS in copy_resources generator.
[
Konrad Feiler
](
https://github.com/Bersaelor
)
[
#6052
](
https://github.com/CocoaPods/CocoaPods/issues/6052
)
## 1.1.1 (2016-10-20)
## 1.1.1 (2016-10-20)
...
@@ -48,7 +50,6 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
...
@@ -48,7 +50,6 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
[
Orta Therox
](
https://github.com/orta
)
[
Orta Therox
](
https://github.com/orta
)
[
#6049
](
https://github.com/CocoaPods/CocoaPods/pull/6049
)
[
#6049
](
https://github.com/CocoaPods/CocoaPods/pull/6049
)
##### Bug Fixes
##### Bug Fixes
*
None.
*
None.
...
...
lib/cocoapods/generator/copy_resources_script.rb
View file @
32e84e15
...
@@ -114,6 +114,9 @@ case "${TARGETED_DEVICE_FAMILY}" in
...
@@ -114,6 +114,9 @@ case "${TARGETED_DEVICE_FAMILY}" in
2)
2)
TARGET_DEVICE_ARGS="--target-device ipad"
TARGET_DEVICE_ARGS="--target-device ipad"
;;
;;
3)
TARGET_DEVICE_ARGS="--target-device tv"
;;
*)
*)
TARGET_DEVICE_ARGS="--target-device mac"
TARGET_DEVICE_ARGS="--target-device mac"
;;
;;
...
...
cocoapods-integration-specs
@
f7c00702
Subproject commit
bd1a7c0f2a71b1168c4743c2d5f4b873a43becbb
Subproject commit
f7c00702a648e986ddb11658b374c36c136ca3a0
spec/integration.rb
View file @
32e84e15
...
@@ -28,10 +28,10 @@
...
@@ -28,10 +28,10 @@
#
#
# - Have a way to track precisely the evolution of the artifacts (and of the
# - Have a way to track precisely the evolution of the artifacts (and of the
# UI) produced by CocoaPods (git diff of the after folders).
# UI) produced by CocoaPods (git diff of the after folders).
# - Allow uses to submit pull requests with the environment necessary to
# - Allow use
r
s to submit pull requests with the environment necessary to
# reproduce an issue.
# reproduce an issue.
# - Have robust tests which don't depend on the programmatic interface of
# - Have robust tests which don't depend on the programmatic interface of
# CocoaPods. These tests depend only the binary and its arguments an thus are
# CocoaPods. These tests depend only the binary and its arguments an
d
thus are
# suitable for testing CP regardless of the implementation (they could even
# suitable for testing CP regardless of the implementation (they could even
# work for an Objective-C one)
# work for an Objective-C one)
...
...
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