DesignKit.podspec 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # Start from https://github.com/CocoaPods/pod-template/blob/master/NAME.podspec
  2. #
  3. # Be sure to run `pod lib lint ${POD_NAME}.podspec' to ensure this is a
  4. # valid spec before submitting.
  5. #
  6. # Any lines starting with a # are optional, but their use is encouraged
  7. # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
  8. #
  9. Pod::Spec.new do |s|
  10. s.name = 'DesignKit'
  11. s.version = '1.0.0'
  12. s.summary = 'Design components'
  13. # This description is used to generate tags and improve search results.
  14. # * Think: What does it do? Why did you write it? What is the focus?
  15. # * Try to keep it short, snappy and to the point.
  16. # * Write the description between the DESC delimiters below.
  17. # * Finally, don't worry about the indent, CocoaPods strips it!
  18. s.description = <<-DESC
  19. Contains the decomponents for Design System.
  20. DESC
  21. s.homepage = 'https://github.com/JakeLin/moments-ios'
  22. s.license = 'MIT'
  23. s.author = 'MIT'
  24. s.source = { :path => '.' }
  25. s.ios.deployment_target = '10.0'
  26. s.swift_versions = '5.3'
  27. s.source_files = 'src/**/*'
  28. # s.resources = 'assets/**/*'
  29. end