Created
March 24, 2022 17:50
-
-
Save denandreychuk/62f25259d15ed52b490946fb03d1a508 to your computer and use it in GitHub Desktop.
Базовый Podspec файл
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Основы Cocoapods 02: Как создать публичную библиотеку | |
| # https://youtu.be/wUjGImmGsVc | |
| Pod::Spec.new do |s| | |
| s.name = 'PMUserPrinter' | |
| s.version = '1.0.0' | |
| s.license = 'MIT' | |
| s.summary = 'Test framework' | |
| s.homepage = 'https://github.com/denandreychuk/PMUserPrinter' | |
| s.authors = { 'Den Andreychuk' => 'business@denandreychuk.com' } | |
| s.source = { :git => 'https://github.com/denandreychuk/PMUserPrinter.git', :tag => s.version.to_s } | |
| s.source_files = 'Sources/*.swift' | |
| s.swift_version = '5.0' | |
| s.platform = :ios, '13.0' | |
| s.dependency 'SwiftyBeaver' | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment