LenzTensorFlow.podspec 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. #
  2. # Be sure to run `pod spec lint LenzTensorFlow.podspec' to ensure this is a
  3. # valid spec and to remove all comments including this before submitting the spec.
  4. #
  5. # To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
  6. # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
  7. #
  8. Pod::Spec.new do |spec|
  9. # ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  10. #
  11. # These will help people to find your library, and whilst it
  12. # can feel like a chore to fill in it's definitely to your advantage. The
  13. # summary should be tweet-length, and the description more in depth.
  14. #
  15. spec.name = "LenzTensorFlow"
  16. spec.version = "0.0.1"
  17. spec.summary = "A short description of LenzTensorFlow."
  18. # This description is used to generate tags and improve search results.
  19. # * Think: What does it do? Why did you write it? What is the focus?
  20. # * Try to keep it short, snappy and to the point.
  21. # * Write the description between the DESC delimiters below.
  22. # * Finally, don't worry about the indent, CocoaPods strips it!
  23. spec.description = <<-DESC
  24. DESC
  25. spec.homepage = "http://EXAMPLE/LenzTensorFlow"
  26. # spec.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
  27. # ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  28. #
  29. # Licensing your code is important. See https://choosealicense.com for more info.
  30. # CocoaPods will detect a license file if there is a named LICENSE*
  31. # Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'.
  32. #
  33. spec.license = "MIT (example)"
  34. # spec.license = { :type => "MIT", :file => "FILE_LICENSE" }
  35. # ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  36. #
  37. # Specify the authors of the library, with email addresses. Email addresses
  38. # of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also
  39. # accepts just a name if you'd rather not provide an email address.
  40. #
  41. # Specify a social_media_url where others can refer to, for example a twitter
  42. # profile URL.
  43. #
  44. spec.author = { "lxy" => "634097376@qq.com" }
  45. # Or just: spec.author = "lxy"
  46. # spec.authors = { "lxy" => "634097376@qq.com" }
  47. # spec.social_media_url = "https://twitter.com/lxy"
  48. # ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  49. #
  50. # If this Pod runs only on iOS or OS X, then specify the platform and
  51. # the deployment target. You can optionally include the target after the platform.
  52. #
  53. # spec.platform = :ios
  54. # spec.platform = :ios, "5.0"
  55. # When using multiple platforms
  56. # spec.ios.deployment_target = "5.0"
  57. # spec.osx.deployment_target = "10.7"
  58. # spec.watchos.deployment_target = "2.0"
  59. # spec.tvos.deployment_target = "9.0"
  60. # ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  61. #
  62. # Specify the location from where the source should be retrieved.
  63. # Supports git, hg, bzr, svn and HTTP.
  64. #
  65. spec.source = { :git => "http://EXAMPLE/LenzTensorFlow.git", :tag => "#{spec.version}" }
  66. # ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  67. #
  68. # CocoaPods is smart about how it includes source code. For source files
  69. # giving a folder will include any swift, h, m, mm, c & cpp files.
  70. # For header files it will include any header in the folder.
  71. # Not including the public_header_files will make all headers public.
  72. #
  73. spec.source_files = "Classes", "Classes/**/*.{h,m}"
  74. spec.exclude_files = "Classes/Exclude"
  75. # spec.public_header_files = "Classes/**/*.h"
  76. # ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  77. #
  78. # A list of resources included with the Pod. These are copied into the
  79. # target bundle with a build phase script. Anything else will be cleaned.
  80. # You can preserve files from being cleaned, please don't preserve
  81. # non-essential files like tests, examples and documentation.
  82. #
  83. # spec.resource = "icon.png"
  84. # spec.resources = "Resources/*.png"
  85. # spec.preserve_paths = "FilesToSave", "MoreFilesToSave"
  86. # ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  87. #
  88. # Link your library with frameworks, or libraries. Libraries do not include
  89. # the lib prefix of their name.
  90. #
  91. # spec.framework = "SomeFramework"
  92. # spec.frameworks = "SomeFramework", "AnotherFramework"
  93. # spec.library = "iconv"
  94. # spec.libraries = "iconv", "xml2"
  95. # ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  96. #
  97. # If your library depends on compiler flags you can set them in the xcconfig hash
  98. # where they will only apply to your library. If you depend on other Podspecs
  99. # you can include multiple dependencies to ensure it works.
  100. # spec.requires_arc = true
  101. # spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
  102. # spec.dependency "JSONKit", "~> 1.4"
  103. end