-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlibrato-iOS.podspec
22 lines (21 loc) · 1.1 KB
/
librato-iOS.podspec
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 = "librato-iOS"
s.version = "1.2.3"
s.summary = "Librato library for iOS"
s.description = <<-DESC
A simple, delightful wrapper for the Librato API with conveniences for common use cases
DESC
s.homepage = "https://github.com/amco/librato-iOS"
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.author = { "Adam Yanalunas" => "[email protected]" }
s.source = { :git => "https://github.com/amco/librato-iOS.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.source_files = 'Librato-iOS/**/*.{h,m}'
s.frameworks = 'QuartzCore', 'Foundation', 'SystemConfiguration', 'MobileCoreServices', 'UIKit'
s.prefix_header_file = 'librato-iOS/librato-iOS-Prefix.pch'
s.resources = 'Librato-iOS/Librato-Localizable.strings'
s.exclude_files = 'Demo'
s.requires_arc = true
s.dependency 'AFNetworking', '~> 3.2'
s.dependency 'Mantle', '~> 2.1'
end