-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathLongPressRecordButton.podspec
More file actions
27 lines (17 loc) · 913 Bytes
/
Copy pathLongPressRecordButton.podspec
File metadata and controls
27 lines (17 loc) · 913 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
26
27
Pod::Spec.new do |s|
s.name = "LongPressRecordButton"
s.version = "1.5.0"
s.summary = "Simple and easy-to-use record button for iOS, that enforces a long press, similar to Instagram"
s.description = <<-DESC
Simple and easy-to-use record button for iOS, that enforces a long press (and shows a tooltip when short-pressed)
similar to the Instagram app.
DESC
s.homepage = "https://github.com/mkoehnke/LongPressRecordButton"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = "Mathias Köhnke"
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/mkoehnke/LongPressRecordButton.git", :tag => s.version.to_s }
s.source_files = "LongPressRecordButton", "LongPressRecordButton/**/*.{swift}"
s.exclude_files = "Classes/Exclude"
s.requires_arc = true
end