Skip to content

Commit 460d0a2

Browse files
committed
Update podspec to fix Parse pod issue.
1 parent 5a0eb7e commit 460d0a2

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

ParseModel.podspec

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
Pod::Spec.new do |s|
22
s.name = "ParseModel"
3-
s.version = "1.2.0"
3+
s.version = "1.2.1"
44
s.summary = "Hassel-free data models for the Parse iOS SDK."
5-
s.description = "Create your properties with @dynamic and ParseModel automatically maps them to a PFObject. Alternative to PFObject subclassing."
5+
s.description = "Create your properties with @dynamic and ParseModel automatically maps them to a PFObject or PFUser. Alternative to PFObject subclassing."
66
s.homepage = "https://github.com/FuturaIO/ParseModel-iOS"
77
s.license = {
88
:type => 'Apache',
99
:text => "http://www.apache.org/licenses/LICENSE-2.0.html"
1010
}
11-
s.authors = { "Christopher Constable" => "[email protected]", "Jens Alfke" => "[email protected]" }
12-
s.source = { :git => "https://github.com/FuturaIO/ParseModel-iOS.git", :tag => "1.2.0" }
11+
s.authors = { "Christopher Constable" => "[email protected]" }
12+
s.source = { :git => "https://github.com/FuturaIO/ParseModel-iOS.git", :tag => "1.2.1" }
1313
s.platform = :ios, '5.0'
1414
s.source_files = 'ParseModel/**/*.{h,m}'
1515
s.requires_arc = true
1616
s.dependency 'Parse'
17+
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/Parse"' }
1718
end

0 commit comments

Comments
 (0)