forked from amco/librato-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrato-iOS.podspec
More file actions
22 lines (21 loc) · 1.1 KB
/
librato-iOS.podspec
File metadata and controls
22 lines (21 loc) · 1.1 KB
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.0.0"
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" => "adam@yanalunas.com" }
s.source = { :git => "https://github.com/amco/librato-iOS.git", :tag => "#{s.version}" }
s.platform = :ios, '6.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', '~> 1.0'
s.dependency 'Mantle', '~> 1.3'
end