Podfile 776 B

1234567891011121314151617181920212223242526
  1. abstract_target 'CutBoxAll' do
  2. platform :osx, '11.0'
  3. pod 'RxSwift'
  4. target 'CutBox' do
  5. script_phase :name => 'Sign', :script => 'scripts/sign.sh'
  6. pod 'JSONSchema', git: 'https://github.com/kylef/JSONSchema.swift'
  7. pod 'KeyHolder'
  8. pod 'Sparkle'
  9. pod 'RxCocoa'
  10. pod 'SwiftyStringScore', git: 'git@github.com:8bytes/SwiftyStringScore'
  11. end
  12. target 'CutBoxUnitTests' do
  13. script_phase :name => 'Sign', :script => 'scripts/sign.sh'
  14. pod 'JSONSchema', git: 'https://github.com/kylef/JSONSchema.swift'
  15. pod 'KeyHolder'
  16. pod 'Quick'
  17. pod 'Nimble'
  18. pod 'Sparkle'
  19. pod 'RxCocoa'
  20. pod 'SwiftyStringScore', git: 'git@github.com:8bytes/SwiftyStringScore'
  21. end
  22. end