Skip to content
This repository was archived by the owner on Aug 16, 2023. It is now read-only.

Commit 3e858b2

Browse files
committed
Update pod spec.
- Bump version - Support iOS 5 and OS X 10.7. #8.
1 parent f307ec5 commit 3e858b2

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed
Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
Pod::Spec.new do |s|
22
s.name = 'CMDQueryStringSerialization'
3-
s.version = '0.2.0'
3+
s.version = '0.3.0'
44
s.summary = 'Easy conversion between dictionaries and query strings in Objective-C.'
55
s.homepage = 'https://github.com/calebd/CMDQueryStringSerialization'
66
s.license = { :type => 'MIT', :file => 'LICENSE' }
77
s.author = { 'Caleb Davenport' => 'calebmdavenport@gmail.com' }
88
s.source = { :git => 'https://github.com/calebd/CMDQueryStringSerialization.git', :tag => "v#{s.version}" }
9+
910
s.requires_arc = true
11+
s.xcconfig = { 'OTHER_LDFLAGS' => '-lObjC -all_load' }
1012

11-
s.ios.deployment_target = '6.0'
12-
s.osx.deployment_target = '10.8'
13+
s.ios.deployment_target = '5.0'
14+
s.osx.deployment_target = '10.7'
1315

1416
s.source_files = 'CMDQueryStringSerialization/**/*.{h,m}'
15-
s.public_header_files = 'CMDQueryStringSerialization/CMDQueryStringSerialization.h'
17+
s.public_header_files =
18+
'CMDQueryStringSerialization/CMDQueryStringSerialization.h',
19+
'CMDQueryStringSerialization/CMDQueryStringWritingOptions.h'
20+
1621
end

0 commit comments

Comments
 (0)