-
Notifications
You must be signed in to change notification settings - Fork 4
/
Spot.podspec
36 lines (28 loc) · 1.24 KB
/
Spot.podspec
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
28
29
30
31
32
33
34
35
36
#
# Be sure to run `pod lib lint Spot.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Spot'
s.version = '0.1.9'
s.summary = 'A super simple pod for reporting UI issues.'
s.description = <<-DESC
A super simple pod for reporting UI issues.
When you spot something in your app that needs reporting just shake your phone/device. A screenshot of the current screen will popup, draw on it to highlight areas and then send it on in an email.
DESC
s.homepage = 'https://github.com/Workshed/Spot'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Daniel Leivers' => '[email protected]' }
s.source = { :git => 'https://github.com/Workshed/Spot.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/sofaracing'
s.ios.deployment_target = '10.0'
s.source_files = 'Spot/*.swift'
s.resource_bundles = {
'Spot' => ['Spot/Spot.storyboard']
}
s.swift_version = '5.0'
s.frameworks = 'UIKit', 'MessageUI'
end