|
9 | 9 | Pod::Spec.new do |s| |
10 | 10 | s.name = 'PullToRefreshKit' |
11 | 11 | s.version = '0.1.0' |
12 | | - s.summary = 'A short description of PullToRefreshKit.' |
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! |
19 | | - |
| 12 | + s.summary = 'A refresh library written with pure Swift' |
20 | 13 | s.description = <<-DESC |
21 | | -TODO: Add long description of the pod here. |
| 14 | +This is a pull to refresh library written by pure Swift. Using it you can add pull to refresh,pull to load more,pull left/right to view details within one line. Besides,it is quite easy to write a custom refresh view when using this lib. |
22 | 15 | DESC |
23 | 16 |
|
24 | | - s.homepage = 'https://github.com/<GITHUB_USERNAME>/PullToRefreshKit' |
25 | | - # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' |
| 17 | + s.homepage = 'https://github.com/LeoMobileDeveloper/PullToRefreshKit' |
26 | 18 | s.license = { :type => 'MIT', :file => 'LICENSE' } |
27 | 19 | s.author = { 'Leo' => 'leomobiledeveloper@gmail.com' } |
28 | | - s.source = { :git => 'https://github.com/<GITHUB_USERNAME>/PullToRefreshKit.git', :tag => s.version.to_s } |
29 | | - # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>' |
30 | | - |
| 20 | + s.source = { :git => 'https://github.com/LeoMobileDeveloper/PullToRefreshKit.git', :tag => s.version.to_s } |
31 | 21 | s.ios.deployment_target = '8.0' |
| 22 | + s.source_files = 'Source/Classes/**/*' |
32 | 23 |
|
33 | | - s.source_files = 'PullToRefreshKit/Classes/**/*' |
34 | | - |
35 | 24 | s.resource_bundles = { |
36 | | - 'PullToRefreshKit' => ['PullToRefreshKit/Assets/*.png'] |
| 25 | + 'PullToRefreshKit' => ['Source/Assets/*.png'] |
37 | 26 | } |
38 | 27 |
|
39 | | - # s.public_header_files = 'Pod/Classes/**/*.h' |
40 | | - # s.frameworks = 'UIKit', 'MapKit' |
41 | | - # s.dependency 'AFNetworking', '~> 2.3' |
42 | 28 | end |
0 commit comments