-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIssueReporter.podspec
More file actions
22 lines (19 loc) · 972 Bytes
/
IssueReporter.podspec
File metadata and controls
22 lines (19 loc) · 972 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 |s|
s.name = "IssueReporter"
s.version = "5.0.1"
s.summary = "Shake your beta app to report issues to GitHub!"
s.description = <<-DESC
Submit issues to github through your development app by shaking your phone! Beta testers can use this tool to report bugs to you while they are testing your app.
DESC
s.homepage = "https://github.com/abellono/IssueReporter"
s.license = 'MIT'
s.author = { "Hakon Hanesand" => "hakon@abello.no", "Nikolai Heum" => "nikolai@abello.no"}
s.source = { :git => "https://github.com/abellono/IssueReporter.git", :tag => s.version.to_s }
s.platform = :ios, "9.0"
s.requires_arc = true
s.source_files = "IssueReporter/Core/**/*"
s.frameworks = "UIKit", "Foundation"
s.resource_bundles = {
'IssueReporterResources' => ['IssueReporter/Assets/*.{png,strings,storyboard}']
}
end