Guest User

Untitled

a guest
Jun 22nd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. Pod::Spec.new do |spec|
  2. spec.name = "MyPod"
  3. spec.default_subspec = 'Library'
  4.  
  5. spec.subspec "Library" do |subspec|
  6. subspec.source_files = "src/*.swift"
  7. // ... other cocoapods configuration commands
  8. end
  9. spec.subspec "TestDoubles" do |subspec|
  10. subspec.source_files = "testdoubles/*.swift"
  11. // ... other cocoapods configuration commands
  12. end
  13. end
  14.  
  15. pod 'MyPod'
  16.  
  17. pod 'MyPod/TestDoubles'
Add Comment
Please, Sign In to add comment