| 12345678910111213141516171819202122232425262728293031323334353637 |
- # Start from https://github.com/CocoaPods/pod-template/blob/master/NAME.podspec
- #
- # Be sure to run `pod lib lint ${POD_NAME}.podspec' to ensure this is a
- # valid spec before submitting.
- #
- # Any lines starting with a # are optional, but their use is encouraged
- # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
- #
- Pod::Spec.new do |s|
- s.name = 'Tools'
- s.version = '0.0.1'
- s.summary = 'Tools components'
- # This description is used to generate tags and improve search results.
- # * Think: What does it do? Why did you write it? What is the focus?
- # * Try to keep it short, snappy and to the point.
- # * Write the description between the DESC delimiters below.
- # * Finally, don't worry about the indent, CocoaPods strips it!
- s.description = <<-DESC
- Contains the decomponents for Design System.
- DESC
- s.homepage = 'https://github.com/'
- s.license = 'MIT'
- s.author = 'MIT'
- s.source = { :path => '.' }
- s.ios.deployment_target = '10.0'
- s.swift_versions = '5.3'
- s.source_files = 'src/**/*'
- # s.resources = 'assets/**/*'
-
- s.dependency 'SnapKit'
- end
|