-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathPulsar.podspec
More file actions
executable file
·22 lines (18 loc) · 839 Bytes
/
Pulsar.podspec
File metadata and controls
executable file
·22 lines (18 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "Pulsar"
s.version = "2.0.5"
s.summary = "A generic wrapper implementation for copy-on-write data structures written in Swift."
s.description = <<-DESC
Pulsar is a versatile solution for displaying pulse animations as known from Apple Maps.
DESC
s.homepage = "https://github.com/regexident/Pulsar"
s.license = { :type => 'BSD-3', :file => 'LICENSE' }
s.author = { "Vincent Esche" => "regexident@gmail.com" }
s.source = { :git => "https://github.com/regexident/Pulsar.git", :tag => '2.0.5' }
s.source_files = "Pulsar/Classes/*.{swift,h,m}"
# s.public_header_files = "Pulsar/*.h"
s.requires_arc = true
s.ios.deployment_target = "8.0"
# s.osx.deployment_target = "10.9"
s.swift_versions = ['5.0']
end