-
Notifications
You must be signed in to change notification settings - Fork 20
/
TapticEngine.podspec
18 lines (18 loc) · 1.31 KB
/
TapticEngine.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 = 'TapticEngine'
s.version = '1.2.0'
s.summary = '"TapticEngine" generates iOS Device vibrations.'
s.description = <<-DESC
TapticEngine generates haptic feedback vibrations on iOS device.
This library wrapps on [UIImpactFeedbackGenerator](https://developer.apple.com/reference/uikit/uiimpactfeedbackgenerator), [UISelectionFeedbackGenerator](https://developer.apple.com/reference/uikit/uiselectionfeedbackgenerator), [UINotificationFeedbackGenerator](https://developer.apple.com/reference/uikit/uinotificationfeedbackgenerator).
DESC
s.homepage = 'https://github.com/WorldDownTown/TapticEngine'
s.screenshots = 'https://raw.githubusercontent.com/WorldDownTown/TapticEngine/master/images/taptic_engine.png'
s.license = { type: 'MIT', file: 'LICENSE' }
s.author = { WorldDownTown: '[email protected]' }
s.source = { git: 'https://github.com/WorldDownTown/TapticEngine.git', tag: s.version.to_s }
s.social_media_url = 'https://twitter.com/WorldDownTown'
s.ios.deployment_target = '9.0'
s.source_files = 'Sources/**/*.swift'
s.frameworks = ['UIKit']
end