forked from bugtags/Bugtags-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBugtags.podspec
executable file
·31 lines (30 loc) · 1.63 KB
/
Bugtags.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
Pod::Spec.new do |s|
s.name = "Bugtags"
s.version = "1.1.0"
s.summary = "Bug reporting for mobile apps, improve your app anytime, anywhere. Learn more at http://bugtags.com."
s.homepage = "http://bugtags.com/"
s.license = {
:type => 'Commercial',
:text => <<-LICENSE
Copyright (C) 2015 Bugtags.
Permission is hereby granted to use this framework as is, modification are not allowed.
All rights reserved.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
LICENSE
}
s.author = { "Bugtags" => "dev@bugtags.com" }
s.platform = :ios, '6.0'
s.source = { :git => "https://github.com/bugtags/Bugtags-iOS.git", :tag => s.version.to_s }
s.source_files = 'Bugtags.framework/Versions/A/Headers/*.{h}'
s.resources = 'Bugtags.bundle'
s.preserve_paths = 'Bugtags.framework/*', 'Bugtags.bundle'
s.frameworks = 'UIKit', 'ImageIO', 'AVFoundation', 'SystemConfiguration', 'CoreLocation', 'Security', 'CFNetwork', 'Bugtags'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/Bugtags/"' }
s.requires_arc = true
end