mirror of
https://github.com/kean/Pulse.git
synced 2026-04-30 21:02:27 +00:00
25 lines
686 B
Ruby
25 lines
686 B
Ruby
Pod::Spec.new do |s|
|
|
|
|
s.name = "PulseUI"
|
|
s.module_name = "PulseUI"
|
|
s.version = "4.2.0"
|
|
s.summary = "Logging system for Apple platforms"
|
|
s.swift_version = "5.7"
|
|
|
|
s.description = <<-DESC
|
|
Pulse is a powerful logging system for Apple Platforms. Native. Built with SwiftUI.
|
|
DESC
|
|
|
|
s.homepage = "https://github.com/kean/Pulse"
|
|
s.license = "MIT"
|
|
s.author = { "kean" => "https://github.com/kean" }
|
|
s.authors = { "kean" => "https://github.com/kean" }
|
|
s.source = { :git => "https://github.com/kean/Pulse.git", :tag => "#{s.version}" }
|
|
s.social_media_url = "https://kean.blog/"
|
|
|
|
s.ios.deployment_target = "14.0"
|
|
s.dependency "PulseCore", '~> 4.2'
|
|
s.source_files = "Sources/PulseUI/**/*.swift"
|
|
|
|
end
|