forked from BalestraPatrick/HapticButton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HapticButton.podspec
21 lines (16 loc) · 928 Bytes
/
HapticButton.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'HapticButton'
s.version = '0.1'
s.summary = 'A button that is triggered based on the 3D Touch pressure, similar to the iOS 11 control center.'
s.description = <<-DESC
A button that is triggered based on the 3D Touch pressure, similar to the iOS 11 control center.
DESC
s.homepage = 'https://github.com/BalestraPatrick/HapticButton'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'BalestraPatrick' => '[email protected]' }
s.source = { :git => 'https://github.com/BalestraPatrick/HapticButton.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/BalestraPatrick'
s.ios.deployment_target = '10.0'
s.source_files = 'HapticButton/Classes/**/*'
end