Commit 31315a80 authored by Kyle Fuller's avatar Kyle Fuller

Merge pull request #3129 from czechboy0/master

Add .tpp header support
parents db45e7a6 f3ec103a
......@@ -25,6 +25,11 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
##### 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
configured in the Podfile.
[Boris Bügling](https://github.com/neonichu)
......
......@@ -12,7 +12,7 @@ module Pod
GLOB_PATTERNS = {
:readme => 'readme{*,.*}'.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,
}.freeze
......
......@@ -208,7 +208,7 @@ module Pod
file_patterns = ['Classes/*.{h,m,d}', 'Vendor']
options = {
: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,
}
@spec.exclude_files = options[:exclude_patterns]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment