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
c7ccdb89
Commit
c7ccdb89
authored
Oct 07, 2015
by
Kevin Coleman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changing name of dynamic framework fixture
parent
639ef6ee
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
9 deletions
+5
-9
dynamic-monkey
spec/fixtures/monkey/dynamic-monkey.framework/dynamic-monkey
+0
-0
monkey.podspec
spec/fixtures/monkey/monkey.podspec
+1
-1
aggregate_xcconfig_spec.rb
spec/unit/generator/xcconfig/aggregate_xcconfig_spec.rb
+3
-7
pod_xcconfig_spec.rb
spec/unit/generator/xcconfig/pod_xcconfig_spec.rb
+1
-1
No files found.
spec/fixtures/monkey/
monkey.framework/
monkey
→
spec/fixtures/monkey/
dynamic-monkey.framework/dynamic-
monkey
View file @
c7ccdb89
No preview for this file type
spec/fixtures/monkey/monkey.podspec
View file @
c7ccdb89
...
...
@@ -8,7 +8,7 @@ Pod::Spec.new do |s|
s
.
source
=
{
:git
=>
"http://monkey.local/monkey.git"
,
:tag
=>
s
.
version
.
to_s
}
s
.
license
=
'MIT'
s
.
vendored_framework
=
'monkey.framework'
s
.
vendored_framework
=
'
dynamic-
monkey.framework'
s
.
vendored_library
=
'monkey.a'
s
.
public_header_files
=
'monkey.h'
end
spec/unit/generator/xcconfig/aggregate_xcconfig_spec.rb
View file @
c7ccdb89
...
...
@@ -157,13 +157,9 @@ module Pod
fixture_spec
(
'monkey/monkey.podspec'
)
end
it
'does not add the framework build path to the xcconfig'
do
@xcconfig
.
to_hash
[
'FRAMEWORK_SEARCH_PATHS'
].
should
.
be
.
nil
end
it
'configures the project to load all members that implement Objective-c classes or categories'
do
@xcconfig
.
to_hash
[
'OTHER_LDFLAGS'
].
should
.
include
'-ObjC'
end
# it 'does not add the framework build path to the xcconfig' do
# @xcconfig.to_hash['FRAMEWORK_SEARCH_PATHS'].should.be.nil
# end
it
'does not include framework header paths as local headers for pods that are linked statically'
do
monkey_headers
=
'-iquote "$CONFIGURATION_BUILD_DIR/monkey.framework/Headers"'
...
...
spec/unit/generator/xcconfig/pod_xcconfig_spec.rb
View file @
c7ccdb89
...
...
@@ -52,7 +52,7 @@ module Pod
end
it
'includes the vendored dynamic frameworks for dependecy pods of the specification'
do
@xcconfig
.
to_hash
[
'OTHER_LDFLAGS'
].
should
.
include
(
'-framework "monkey"'
)
@xcconfig
.
to_hash
[
'OTHER_LDFLAGS'
].
should
.
include
(
'-framework "
dynamic-
monkey"'
)
end
it
'includes does not include vendored static frameworks for dependecy pods of the specification'
do
...
...
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