-
Notifications
You must be signed in to change notification settings - Fork 1
/
HapticGenerator.podspec
26 lines (25 loc) · 1.34 KB
/
HapticGenerator.podspec
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
26
#
# Be sure to run `pod lib lint HapticGenerator.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'HapticGenerator'
s.version = '4.1.0'
s.summary = 'Seriously simple haptic generation on iOS.'
s.description = <<-DESC
Apple's UIFeedbackGenerator subclasses are not difficult to use, but they are messy.
HapticGenerator tidies everything and makes the process of creating different types of haptics on iOS easy and coherent.
HapticGenerator now comes with convenience constants for all haptics making it even easier, plus the ability to keep the taptic engine powered up after each use automatically.
DESC
s.homepage = 'https://github.com/kanecheshire/HapticGenerator'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'kanecheshire' => 'kane.cheshire@googlemail.com' }
s.source = { :git => 'https://github.com/kanecheshire/HapticGenerator.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/kanecheshire'
s.ios.deployment_target = '8.0'
s.source_files = 'Sources/HapticGenerator.swift'
s.swift_version = '5.0'
end