-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathFMPFeedbackForm.podspec
More file actions
22 lines (18 loc) · 1022 Bytes
/
FMPFeedbackForm.podspec
File metadata and controls
22 lines (18 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |spec|
spec.name = "FMPFeedbackForm"
spec.version = "1.3.0"
spec.summary = "A convenient feedback form for macOS products."
spec.description = <<-DESC
FMPFeedbackForm is an Objective-C framework that lets you add a simple yet effective feedback form to your macOS project. Localized into 12 languages, ready to work with Zendesk right out of the box.
DESC
spec.homepage = "https://github.com/MacPaw/FMPFeedbackForm"
spec.screenshots = "https://github.com/MacPaw/FMPFeedbackForm/blob/master/Screenshots/1.png?raw=true"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = "MacPaw Inc."
spec.platform = :osx, "11.0"
spec.source = { :git => "https://github.com/MacPaw/FMPFeedbackForm.git", :tag => "v#{spec.version}" }
spec.source_files = "FMPFeedbackForm/**/*.{h,m}"
spec.exclude_files = "FMPFeedbackForm/include/**"
spec.resources = "FMPFeedbackForm/Resources/*"
spec.requires_arc = true
end