-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathOCWaveView.podspec
More file actions
25 lines (15 loc) · 815 Bytes
/
OCWaveView.podspec
File metadata and controls
25 lines (15 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Pod::Spec.new do |s|
s.name = "OCWaveView"
s.version = "0.2.1"
s.summary = "🌊 A UIView subclass to present visual feedback for audio input"
s.description = "OCWaveView is a UIView subclass that can present visual feedback for audio input."
s.homepage = "https://github.com/emannuelOC/OCWaveView"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Emannuel Carvalho" => "emannuel.carvalho@icloud.com" }
s.social_media_url = "http://twitter.com/emannuel_oc"
s.platform = :ios, "10.0"
s.swift_versions = '5.0'
s.source = { :git => "https://github.com/emannuelOC/OCWaveView.git", :tag => "0.2.1" }
s.source_files = "OCWaveView", "Sources/**/*.{h,m,swift}"
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5' }
end