Skip to content

Instantly share code, notes, and snippets.

@denandreychuk
Created March 24, 2022 17:50
Show Gist options
  • Select an option

  • Save denandreychuk/62f25259d15ed52b490946fb03d1a508 to your computer and use it in GitHub Desktop.

Select an option

Save denandreychuk/62f25259d15ed52b490946fb03d1a508 to your computer and use it in GitHub Desktop.
Базовый Podspec файл
# Основы 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