I think I found a hacked problem. This is rather strange, but I would say that it is clean enough to use it in production;)
I found here . The idea is to include the source file (even empty) in your list of source files inside your podspec.
Basically the original part of my podspec looks like this:
s.source_files = "myLib/Empty.m", "myLib/Headers/*.h" s.vendored_libraries = "myLib/myLib.a"
The only thing I did was add "myLib / Empty.m" to the source files (Empty.m is strictly empty). Without it, I systematically get a transient error when installing pod. Using it, installing pod works great. It worked for me with both Cocoapods 0.0.39 and 1.0.0.b.4.
Well, it doesn't seem like a dirty decision, but I'm not sure if it will work in every case. And there is no good news about the purity of Cocoapods ...
As I mentioned earlier in the comments, Google seems to have found a cleaner solution. Therefore, if anyone has an idea of ββa real clean solution, please share!
Greetings
Tom
PS: I think I will name the file DirtyCocoapodHack.m instead of Empty.m, I'm sure they will like the dev command;)
source share