-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cephalopod.podspec
18 lines (18 loc) · 931 Bytes
/
Cephalopod.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "Cephalopod"
s.version = "4.0.0"
s.license = { :type => "MIT" }
s.homepage = "https://github.com/evgenyneu/Cephalopod"
s.summary = "A sound fader for AVAudioPlayer written in Swift."
s.description = <<-DESC
This library can help fading sounds in and out with AvAudioPlayer. One can set duration and velocity of the fade. Velocity can vary from linear to exponential.
DESC
s.authors = { "Evgenii Neumerzhitckii" => "sausageskin@gmail.com" }
s.source = { :git => "https://github.com/evgenyneu/Cephalopod.git", :tag => s.version }
s.screenshots = "https://github.com/evgenyneu/Cephalopod/raw/master/graphics/cephalopod_logo.png"
s.source_files = "Cephalopod/**/*.swift"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.tvos.deployment_target = "9.0"
s.swift_versions = ["4.2", "5.0"]
end