|
1 |
| -# |
2 |
| -# Be sure to run `pod lib lint ZippyJSON.podspec' to ensure this is a |
3 |
| -# valid spec before submitting. |
4 |
| -# |
5 |
| -# Any lines starting with a # are optional, but their use is encouraged |
6 |
| -# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html |
7 |
| -# |
8 |
| - |
9 | 1 | Pod::Spec.new do |s|
|
10 | 2 | s.name = 'ZippyJSON'
|
11 | 3 | s.version = '0.0.1'
|
12 |
| - s.summary = 'A short description of ZippyJSON.' |
13 |
| - |
14 |
| -# This description is used to generate tags and improve search results. |
15 |
| -# * Think: What does it do? Why did you write it? What is the focus? |
16 |
| -# * Try to keep it short, snappy and to the point. |
17 |
| -# * Write the description between the DESC delimiters below. |
18 |
| -# * Finally, don't worry about the indent, CocoaPods strips it! |
| 4 | + s.summary = 'A ~4x faster, drop-in replacement for JSONDecoder' |
19 | 5 |
|
20 | 6 | s.description = <<-DESC
|
21 |
| -TODO: Add long description of the pod here. |
| 7 | +ZippyJSON is a very fast library for converting JSON into Swift objects. It is feature-complete, so just use s/JSONDecoder/ZippyJSONDecoder to incorporate it into your app. |
22 | 8 | DESC
|
23 | 9 |
|
24 | 10 | s.homepage = 'https://github.com/michaeleisel/ZippyJSON'
|
25 |
| - # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' |
26 | 11 | s.license = { :type => 'MIT', :file => 'LICENSE' }
|
27 | 12 | s.author = { 'michaeleisel' => '[email protected]' }
|
28 | 13 | s.source = { :git => 'https://github.com/michaeleisel/ZippyJSON.git', :tag => s.version.to_s }
|
29 |
| - # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>' |
30 | 14 |
|
31 | 15 | s.ios.deployment_target = '11.0'
|
32 | 16 | s.osx.deployment_target = '10.13'
|
|
0 commit comments