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
31315a80
Commit
31315a80
authored
Feb 17, 2015
by
Kyle Fuller
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3129 from czechboy0/master
Add .tpp header support
parents
db45e7a6
f3ec103a
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
CHANGELOG.md
CHANGELOG.md
+5
-0
file_accessor.rb
lib/cocoapods/sandbox/file_accessor.rb
+1
-1
file_accessor_spec.rb
spec/unit/sandbox/file_accessor_spec.rb
+1
-1
No files found.
CHANGELOG.md
View file @
31315a80
...
@@ -25,6 +25,11 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
...
@@ -25,6 +25,11 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
##### Bug Fixes
##### Bug Fixes
*
Added support for .tpp C++ header files in specs (previously were getting
filtered out and symlinks wouldn't get created in the Pods/Headers folder.)
[
Honza Dvorsky
](
https://github.com/czechboy0
)
[
#3129
](
https://github.com/CocoaPods/CocoaPods/pull/3129
)
*
Fixed installation for app-extension targets which had no dependencies
*
Fixed installation for app-extension targets which had no dependencies
configured in the Podfile.
configured in the Podfile.
[
Boris Bügling
](
https://github.com/neonichu
)
[
Boris Bügling
](
https://github.com/neonichu
)
...
...
lib/cocoapods/sandbox/file_accessor.rb
View file @
31315a80
...
@@ -12,7 +12,7 @@ module Pod
...
@@ -12,7 +12,7 @@ module Pod
GLOB_PATTERNS
=
{
GLOB_PATTERNS
=
{
:readme
=>
'readme{*,.*}'
.
freeze
,
:readme
=>
'readme{*,.*}'
.
freeze
,
:license
=>
'licen{c,s}e{*,.*}'
.
freeze
,
:license
=>
'licen{c,s}e{*,.*}'
.
freeze
,
:source_files
=>
'*.{h,hpp,hh,m,mm,c,cpp,swift}'
.
freeze
,
:source_files
=>
'*.{h,hpp,
tpp,
hh,m,mm,c,cpp,swift}'
.
freeze
,
:public_header_files
=>
"*{
#{
HEADER_EXTENSIONS
.
join
(
','
)
}
}"
.
freeze
,
:public_header_files
=>
"*{
#{
HEADER_EXTENSIONS
.
join
(
','
)
}
}"
.
freeze
,
}.
freeze
}.
freeze
...
...
spec/unit/sandbox/file_accessor_spec.rb
View file @
31315a80
...
@@ -208,7 +208,7 @@ module Pod
...
@@ -208,7 +208,7 @@ module Pod
file_patterns
=
[
'Classes/*.{h,m,d}'
,
'Vendor'
]
file_patterns
=
[
'Classes/*.{h,m,d}'
,
'Vendor'
]
options
=
{
options
=
{
:exclude_patterns
=>
[
'Classes/**/osx/**/*'
,
'Resources/**/osx/**/*'
],
:exclude_patterns
=>
[
'Classes/**/osx/**/*'
,
'Resources/**/osx/**/*'
],
:dir_pattern
=>
'*.{h,hpp,hh,m,mm,c,cpp,swift}'
,
:dir_pattern
=>
'*.{h,hpp,
tpp,
hh,m,mm,c,cpp,swift}'
,
:include_dirs
=>
false
,
:include_dirs
=>
false
,
}
}
@spec
.
exclude_files
=
options
[
:exclude_patterns
]
@spec
.
exclude_files
=
options
[
:exclude_patterns
]
...
...
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