-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMTLParseAdapter.podspec
More file actions
27 lines (24 loc) · 1.03 KB
/
Copy pathMTLParseAdapter.podspec
File metadata and controls
27 lines (24 loc) · 1.03 KB
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
Pod::Spec.new do |s|
s.name = "MTLParseAdapter"
s.version = "0.1.0"
s.summary = "Easily convert your objects to and from Parse PFObjects"
s.description = <<-DESC
This library provides an interface to convert
objects that conform to MTLJSONSerializing to and
from PFObjects provided by the Parse SDK.
DESC
s.homepage = "https://github.com/lazerwalker/MTLParseAdapter"
s.license = 'MIT'
s.author = { "Mike Walker" => "michael@lazerwalker.com" }
s.source = { :git => "https://github.com/lazerwalker/MTLParseAdapter.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'MTLParseAdapter' => ['Pod/Assets/*.png']
}
s.public_header_files = 'Pod/Classes/**/*.h'
s.dependency 'Asterism', '~> 1.0'
s.dependency 'Mantle', '~> 1.5'
s.dependency 'Parse', '~> 1.6'
end