cocoapods-tdfire-binary 1.1.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/Gemfile +1 -1
  4. data/Gemfile.lock +16 -16
  5. data/README.md +15 -13
  6. data/Rakefile +4 -0
  7. data/cocoapods-tdfire-binary.gemspec +1 -1
  8. data/example/test/.gitignore +42 -0
  9. data/example/test/.gitlab-ci.yml +101 -0
  10. data/example/test/.travis.yml +14 -0
  11. data/example/test/Example/Podfile +22 -0
  12. data/example/test/Example/Podfile.lock +337 -0
  13. data/example/test/Example/Tests/Tests-Info.plist +22 -0
  14. data/example/test/Example/Tests/Tests-Prefix.pch +7 -0
  15. data/example/test/Example/Tests/Tests.m +35 -0
  16. data/example/test/Example/Tests/en.lproj/InfoPlist.strings +2 -0
  17. data/example/test/Example/test.xcodeproj/project.pbxproj +635 -0
  18. data/example/test/Example/test.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  19. data/example/test/Example/test.xcodeproj/xcshareddata/xcschemes/test-Example.xcscheme +101 -0
  20. data/example/test/Example/test.xcworkspace/contents.xcworkspacedata +10 -0
  21. data/example/test/Example/test.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  22. data/example/test/Example/test/Base.lproj/LaunchScreen.storyboard +31 -0
  23. data/example/test/Example/test/Base.lproj/Main.storyboard +50 -0
  24. data/example/test/Example/test/Images.xcassets/AppIcon.appiconset/Contents.json +98 -0
  25. data/example/test/Example/test/TDFAppDelegate.h +15 -0
  26. data/example/test/Example/test/TDFAppDelegate.m +46 -0
  27. data/example/test/Example/test/TDFViewController.h +13 -0
  28. data/example/test/Example/test/TDFViewController.m +29 -0
  29. data/example/test/Example/test/en.lproj/InfoPlist.strings +2 -0
  30. data/example/test/Example/test/main.m +17 -0
  31. data/example/test/Example/test/test-Info.plist +49 -0
  32. data/example/test/Example/test/test-Prefix.pch +16 -0
  33. data/example/test/LICENSE +19 -0
  34. data/example/test/README.md +29 -0
  35. data/example/test/test.podspec +56 -0
  36. data/example/test/test/Assets/.gitkeep +0 -0
  37. data/example/test/test/Classes/.gitkeep +0 -0
  38. data/example/test/test/Classes/ReplaceMe.m +1 -0
  39. data/lib/cocoapods-tdfire-binary.rb +0 -1
  40. data/lib/cocoapods-tdfire-binary/binary_cache_cleaner.rb +106 -0
  41. data/lib/cocoapods-tdfire-binary/binary_specification_refactor.rb +1 -0
  42. data/lib/cocoapods-tdfire-binary/command/binary.rb +1 -1
  43. data/lib/cocoapods-tdfire-binary/command/publish.rb +2 -0
  44. data/lib/cocoapods-tdfire-binary/gem_version.rb +1 -1
  45. data/lib/cocoapods-tdfire-binary/podfile_hook.rb +0 -1
  46. data/lib/cocoapods-tdfire-binary/specification_dsl.rb +6 -6
  47. data/lib/cocoapods_plugin.rb +1 -0
  48. metadata +36 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2c3223e645db7605a686c87ec21cd8e9f65137f7
4
- data.tar.gz: 2d77cd8c5f649508103672cf68e620121a358ca7
3
+ metadata.gz: 4327aaa2c7f9aa393126b8b39558ee07d1910f67
4
+ data.tar.gz: e5bb43d5aa8db3c817660b5c1b81667a47d2fedb
5
5
  SHA512:
6
- metadata.gz: dec1824477e3e4733e3d4a427512a6e3a7131f02bd5ae244753ca9ef0a0732be3287d7b1580ea1f921e6015e8d1a59408efb418f73a5ad1779116b6db7769169
7
- data.tar.gz: 5ec985ed6396951b4bf3e7b9938e183cdb38fdc5d6128ac261a38b1a31b4888d87e1088cb57214cf95b29523400fe7865e7a8c9f01c13839fb465b6dbc3178a6
6
+ metadata.gz: 8ab2e1648f66e17a55511cf41dd7233ae440d9f07609672735b90c4deabc12a1dc0d8baec70a81e25c337154cc387122d849aa49041223c434867f2a71e70fb9
7
+ data.tar.gz: 47a447746ea39b6658746e2f15b6d6a92504ed51153520f504d31fffaddd0bd612f25a2ee971cab6b62be5e63e49a83b0af5934de9c91f419259e609ac1f1717
data/.gitignore CHANGED
@@ -2,3 +2,4 @@
2
2
  pkg
3
3
  .idea/
4
4
  bin/
5
+ example/test/Pods
data/Gemfile CHANGED
@@ -4,7 +4,7 @@ source 'https://rubygems.org'
4
4
  gemspec
5
5
 
6
6
  group :development do
7
- gem 'cocoapods'
7
+ gem 'cocoapods', '1.2.1'
8
8
 
9
9
  gem 'mocha'
10
10
  gem 'bacon'
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cocoapods-tdfire-binary (1.1.0)
5
- cocoapods (~> 1.2)
4
+ cocoapods-tdfire-binary (1.2.0)
5
+ cocoapods (~> 1.2.1)
6
6
  cocoapods-packager (~> 1.5.0)
7
7
 
8
8
  GEM
@@ -17,27 +17,27 @@ GEM
17
17
  atomos (0.1.2)
18
18
  bacon (1.2.0)
19
19
  claide (1.0.2)
20
- cocoapods (1.5.0)
20
+ cocoapods (1.2.1)
21
21
  activesupport (>= 4.0.2, < 5)
22
- claide (>= 1.0.2, < 2.0)
23
- cocoapods-core (= 1.5.0)
24
- cocoapods-deintegrate (>= 1.0.2, < 2.0)
25
- cocoapods-downloader (>= 1.2.0, < 2.0)
22
+ claide (>= 1.0.1, < 2.0)
23
+ cocoapods-core (= 1.2.1)
24
+ cocoapods-deintegrate (>= 1.0.1, < 2.0)
25
+ cocoapods-downloader (>= 1.1.3, < 2.0)
26
26
  cocoapods-plugins (>= 1.0.0, < 2.0)
27
27
  cocoapods-search (>= 1.0.0, < 2.0)
28
28
  cocoapods-stats (>= 1.0.0, < 2.0)
29
- cocoapods-trunk (>= 1.3.0, < 2.0)
29
+ cocoapods-trunk (>= 1.2.0, < 2.0)
30
30
  cocoapods-try (>= 1.1.0, < 2.0)
31
31
  colored2 (~> 3.1)
32
32
  escape (~> 0.0.4)
33
33
  fourflusher (~> 2.0.1)
34
34
  gh_inspector (~> 1.0)
35
- molinillo (~> 0.6.5)
35
+ molinillo (~> 0.5.7)
36
36
  nap (~> 1.0)
37
37
  ruby-macho (~> 1.1)
38
- xcodeproj (>= 1.5.7, < 2.0)
39
- cocoapods-core (1.5.0)
40
- activesupport (>= 4.0.2, < 6)
38
+ xcodeproj (>= 1.4.4, < 2.0)
39
+ cocoapods-core (1.2.1)
40
+ activesupport (>= 4.0.2, < 5)
41
41
  fuzzy_match (~> 2.0.4)
42
42
  nap (~> 1.0)
43
43
  cocoapods-deintegrate (1.0.2)
@@ -66,7 +66,7 @@ GEM
66
66
  metaclass (~> 0.0.1)
67
67
  mocha-on-bacon (0.2.3)
68
68
  mocha (>= 0.13.0)
69
- molinillo (0.6.5)
69
+ molinillo (0.5.7)
70
70
  nanaimo (0.2.5)
71
71
  nap (1.1.0)
72
72
  netrc (0.11.0)
@@ -77,12 +77,12 @@ GEM
77
77
  thread_safe (0.3.6)
78
78
  tzinfo (1.2.5)
79
79
  thread_safe (~> 0.1)
80
- xcodeproj (1.5.7)
80
+ xcodeproj (1.5.8)
81
81
  CFPropertyList (>= 2.3.3, < 4.0)
82
82
  atomos (~> 0.1.2)
83
83
  claide (>= 1.0.2, < 2.0)
84
84
  colored2 (~> 3.1)
85
- nanaimo (~> 0.2.4)
85
+ nanaimo (~> 0.2.5)
86
86
 
87
87
  PLATFORMS
88
88
  ruby
@@ -90,7 +90,7 @@ PLATFORMS
90
90
  DEPENDENCIES
91
91
  bacon
92
92
  bundler (~> 1.3)
93
- cocoapods
93
+ cocoapods (= 1.2.1)
94
94
  cocoapods-tdfire-binary!
95
95
  mocha
96
96
  mocha-on-bacon
data/README.md CHANGED
@@ -1,21 +1,17 @@
1
1
  # cocoapods-tdfire-binary
2
2
 
3
- A description of cocoapods-tdfire-binary.
3
+ <a href="https://travis-ci.org/tripleCC/cocoapods-tdfire-binary"><img src="https://img.shields.io/travis/tripleCC/cocoapods-tdfire-binary/master.svg"></a>
4
4
 
5
5
  ## Installation
6
6
 
7
7
  $ gem install cocoapods-tdfire-binary
8
8
 
9
-
10
- ## TODO
11
-
12
- 1. 拥有 Subspec 的组件二进制依赖方式
13
- 2. 本地 Lint 二进制
14
9
 
15
10
  ## Usage
16
11
 
17
12
  ```
18
13
 
14
+
19
15
  Usage:
20
16
 
21
17
  $ pod binary COMMAND
@@ -24,11 +20,17 @@ Usage:
24
20
 
25
21
  Commands:
26
22
 
27
- + lint 对本地二进制进行 Lint
28
- + package 二进制打包
29
- + publish 正式发布二进制组件
30
- + pull 下载二进制 zip 包
31
- + push 推送二进制 zip 包
23
+ + assemble 执行二进制组件发布操作集合
24
+ + delete 删除二进制版本
25
+ + init 初始化二进制插件
26
+ + lib 二进制模版库操作
27
+ + lint 对本地二进制进行 Lint
28
+ + list 查看所有二进制版本信息
29
+ + package 二进制打包
30
+ + publish 正式发布二进制组件
31
+ + pull 下载二进制 zip 包
32
+ + push 推送二进制 zip 包
33
+ + search 查找二进制版本信息
32
34
 
33
35
  ```
34
36
 
@@ -83,7 +85,7 @@ end
83
85
 
84
86
  ```
85
87
 
86
- - tdfire_source_proc
88
+ - tdfire_source_configurator
87
89
  - 配置源码依赖
88
90
 
89
91
  - tdfire_binary
@@ -142,4 +144,4 @@ end
142
144
  ```
143
145
  env tdfire_use_binary=1 tdfire_unpublished_pods=PodA pod lib lint xxxx
144
146
  env tdfire_force_use_source=1 pod install
145
- ```
147
+ ```
data/Rakefile CHANGED
@@ -11,3 +11,7 @@ end
11
11
 
12
12
  task :default => :spec
13
13
 
14
+ task :console do
15
+ sh "irb -r cocoapods-tdfire-binary -I ./lib"
16
+ end
17
+
@@ -20,6 +20,6 @@ Gem::Specification.new do |spec|
20
20
  spec.add_development_dependency 'bundler', '~> 1.3'
21
21
  spec.add_development_dependency 'rake', '~> 12.0'
22
22
 
23
- spec.add_runtime_dependency 'cocoapods', '~> 1.2'
23
+ spec.add_runtime_dependency 'cocoapods', '~> 1.2.1'
24
24
  spec.add_runtime_dependency 'cocoapods-packager', '~> 1.5.0'
25
25
  end
@@ -0,0 +1,42 @@
1
+ # OS X
2
+ .DS_Store
3
+
4
+ # Xcode
5
+ build/
6
+ *.pbxuser
7
+ !default.pbxuser
8
+ *.mode1v3
9
+ !default.mode1v3
10
+ *.mode2v3
11
+ !default.mode2v3
12
+ *.perspectivev3
13
+ !default.perspectivev3
14
+ xcuserdata/
15
+ *.xccheckout
16
+ profile
17
+ *.moved-aside
18
+ DerivedData
19
+ *.hmap
20
+ *.ipa
21
+
22
+ # Bundler
23
+ .bundle
24
+
25
+ # Add this line if you want to avoid checking in source code from Carthage dependencies.
26
+ # Carthage/Checkouts
27
+
28
+ Carthage/Build
29
+ Example/Carthage/Build
30
+ Example/*.zip
31
+
32
+ # We recommend against adding the Pods directory to your .gitignore. However
33
+ # you should judge for yourself, the pros and cons are mentioned at:
34
+ # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
35
+ #
36
+ # Note: if you ignore the Pods directory, make sure to uncomment
37
+ # `pod install` in .travis.yml
38
+ #
39
+ Pods/
40
+
41
+ *.framework
42
+ *.zip
@@ -0,0 +1,101 @@
1
+ before_script:
2
+ # https://gitlab.com/gitlab-org/gitlab-ce/issues/14983
3
+ # shared runner 会出现,special runner只会报warning
4
+ - export LANG=en_US.UTF-8
5
+ - export LANGUAGE=en_US:en
6
+ - export LC_ALL=en_US.UTF-8
7
+
8
+ - pwd
9
+ - git clone git@git.2dfire-inc.com:ios/ci-yaml-shell.git
10
+ - ci-yaml-shell/before_shell_executor.sh
11
+
12
+ after_script:
13
+ - rm -fr ci-yaml-shell
14
+
15
+ stages:
16
+ - lint
17
+ - test
18
+ - package
19
+ - binary_lint
20
+ - publish
21
+ - report
22
+ - cleanup
23
+
24
+ lib_lint:
25
+ stage: lint
26
+ only:
27
+ - master
28
+ - /^release.*$/
29
+ - tags
30
+ retry: 2
31
+ script:
32
+ - ci-yaml-shell/lib_lint_executor.sh
33
+ tags:
34
+ - iOS
35
+
36
+ oc_lint:
37
+ stage: lint
38
+ only:
39
+ - master
40
+ - /^release.*$/
41
+ - tags
42
+ retry: 2
43
+ script:
44
+ - ci-yaml-shell/oclint_executor.sh lint_result
45
+ after_script:
46
+ - cat lint_result | python -m json.tool
47
+ tags:
48
+ - iOS
49
+
50
+ unit_test:
51
+ stage: test
52
+ only:
53
+ - master
54
+ - /^release.*$/
55
+ - tags
56
+ retry: 2
57
+ script:
58
+ - ci-yaml-shell/unit_test_executor.sh
59
+ tags:
60
+ - iOS
61
+
62
+ package_framework:
63
+ stage: package
64
+ only:
65
+ - tags
66
+ script:
67
+ - ci-yaml-shell/framework_pack_executor.sh
68
+ tags:
69
+ - iOS
70
+
71
+ binary_lint:
72
+ stage: binary_lint
73
+ only:
74
+ - tags
75
+ retry: 2
76
+ script:
77
+ - ci-yaml-shell/lib_lint_executor.sh
78
+ tags:
79
+ - iOS
80
+
81
+ publish_pod:
82
+ stage: publish
83
+ only:
84
+ - tags
85
+ retry: 2
86
+ script:
87
+ - ci-yaml-shell/publish_executor.sh
88
+ tags:
89
+ - iOS
90
+ # allow_failure: true
91
+
92
+ report_to_director:
93
+ stage: report
94
+ script:
95
+ - ci-yaml-shell/report_executor.sh
96
+ only:
97
+ - master
98
+ - tags
99
+ when: on_failure
100
+ tags:
101
+ - iOS
@@ -0,0 +1,14 @@
1
+ # references:
2
+ # * http://www.objc.io/issue-6/travis-ci.html
3
+ # * https://github.com/supermarin/xcpretty#usage
4
+
5
+ osx_image: xcode7.3
6
+ language: objective-c
7
+ # cache: cocoapods
8
+ # podfile: Example/Podfile
9
+ # before_install:
10
+ # - gem install cocoapods # Since Travis is not always on latest version
11
+ # - pod install --project-directory=Example
12
+ script:
13
+ - set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/test.xcworkspace -scheme test-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
14
+ - pod lib lint
@@ -0,0 +1,22 @@
1
+ source 'git@git.2dfire-inc.com:ios/cocoapods-spec.git'
2
+ platform :ios, '8.0'
3
+
4
+ #use_frameworks!
5
+
6
+ plugin 'cocoapods-tdfire-binary'
7
+
8
+ tdfire_use_binary!
9
+ tdfire_use_source_pods ['TDFCelebiFunctions']
10
+
11
+ target 'test_Example' do
12
+ pod 'test', :path => '../'
13
+ pod 'TDFCelebiFunctions'
14
+ pod 'TDFComponents'
15
+ pod 'TDFBaseUI'
16
+ pod 'TDFCoreProtocol'
17
+ target 'test_Tests' do
18
+ inherit! :search_paths
19
+
20
+
21
+ end
22
+ end
@@ -0,0 +1,337 @@
1
+ PODS:
2
+ - AFNetworking (3.1.0.1):
3
+ - AFNetworking/TdfireBinary (= 3.1.0.1)
4
+ - AFNetworking/TdfireBinary (3.1.0.1)
5
+ - Celebi (0.3.7):
6
+ - TDFAsync
7
+ - TDFCelebiParser
8
+ - TDFDataBinding
9
+ - CocoaLumberjack (3.4.1):
10
+ - CocoaLumberjack/Default (= 3.4.1)
11
+ - CocoaLumberjack/Extensions (= 3.4.1)
12
+ - CocoaLumberjack/Default (3.4.1)
13
+ - CocoaLumberjack/Extensions (3.4.1):
14
+ - CocoaLumberjack/Default
15
+ - CocoaSecurity (1.2.4.2)
16
+ - FLAnimatedImage (1.0.14)
17
+ - GYLThemeKit (0.0.1):
18
+ - YYModel
19
+ - JSONKit (1.5.3)
20
+ - libextobjc (0.5.1):
21
+ - libextobjc/TdfireBinary (= 0.5.1)
22
+ - libextobjc/TdfireBinary (0.5.1)
23
+ - libwebp (0.6.0):
24
+ - libwebp/core (= 0.6.0)
25
+ - libwebp/dec (= 0.6.0)
26
+ - libwebp/demux (= 0.6.0)
27
+ - libwebp/dsp (= 0.6.0)
28
+ - libwebp/enc (= 0.6.0)
29
+ - libwebp/mux (= 0.6.0)
30
+ - libwebp/utils (= 0.6.0)
31
+ - libwebp/webp (= 0.6.0)
32
+ - libwebp/core (0.6.0):
33
+ - libwebp/webp
34
+ - libwebp/dec (0.6.0):
35
+ - libwebp/core
36
+ - libwebp/demux (0.6.0):
37
+ - libwebp/core
38
+ - libwebp/dsp (0.6.0):
39
+ - libwebp/core
40
+ - libwebp/enc (0.6.0):
41
+ - libwebp/core
42
+ - libwebp/mux (0.6.0):
43
+ - libwebp/core
44
+ - libwebp/utils (0.6.0):
45
+ - libwebp/core
46
+ - libwebp/webp (0.6.0)
47
+ - Mantle (2.0.7.1):
48
+ - Mantle/TdfireBinary (= 2.0.7.1)
49
+ - Mantle/TdfireBinary (2.0.7.1)
50
+ - Masonry (1.0.1.1)
51
+ - MBProgressHUD (1.1.0.1)
52
+ - Nimbus/Core (1.3.0)
53
+ - NSHash (1.1.0.1)
54
+ - PinYin4Objc (1.1.3)
55
+ - ReactiveObjC (2.1.0.4)
56
+ - RegexKitLite (4.0.2)
57
+ - SDWebImage (4.0.0.2):
58
+ - SDWebImage/TdfireBinary (= 4.0.0.2)
59
+ - SDWebImage/TdfireBinary (4.0.0.2):
60
+ - FLAnimatedImage (~> 1.0)
61
+ - libwebp
62
+ - TBXML (1.5.1.1)
63
+ - TDFAdaptationKit (0.1.1)
64
+ - TDFAPIHUDPresenter (1.1.3):
65
+ - Masonry
66
+ - MBProgressHUD (~> 1.0)
67
+ - TDFAPIKit (~> 1.0)
68
+ - TDFCategories
69
+ - TDFAPIKit (1.2.8):
70
+ - TDFCategories
71
+ - TDFNetworking
72
+ - TDFAsync (0.1.3)
73
+ - TDFBaseInfoKit (0.2.2)
74
+ - TDFBaseUI (0.1.8):
75
+ - Masonry
76
+ - TDFBaseUI/Common (= 0.1.8)
77
+ - TDFBaseUI/Login (= 0.1.8)
78
+ - TDFBaseUI/SearchBar (= 0.1.8)
79
+ - TDFBaseUI/Common (0.1.8):
80
+ - Masonry
81
+ - TDFBaseUI/Login
82
+ - TDFCore
83
+ - TOCropViewController
84
+ - TDFBaseUI/Login (0.1.8):
85
+ - Masonry
86
+ - TDFAPIHUDPresenter
87
+ - TDFBatchOperation
88
+ - TDFCommunalModel
89
+ - TDFKeyboard
90
+ - TDFOldSystemService
91
+ - TDFStyleKit
92
+ - TDFBaseUI/SearchBar (0.1.8):
93
+ - Masonry
94
+ - TDFBaseUI/Login
95
+ - TDFCore
96
+ - TDFBatchOperation (1.1.6):
97
+ - TDFCoreProtocol (~> 1.0)
98
+ - TDFCategories (2.0.14):
99
+ - TDFCategories/NSBundle (= 2.0.14)
100
+ - TDFCategories/NSData (= 2.0.14)
101
+ - TDFCategories/NSDictionay (= 2.0.14)
102
+ - TDFCategories/NSMutableArray (= 2.0.14)
103
+ - TDFCategories/NSString (= 2.0.14)
104
+ - TDFCategories/UICollectionReusableView (= 2.0.14)
105
+ - TDFCategories/UICollectionViewCell (= 2.0.14)
106
+ - TDFCategories/UIColor (= 2.0.14)
107
+ - TDFCategories/UIImage (= 2.0.14)
108
+ - TDFCategories/UILabel (= 2.0.14)
109
+ - TDFCategories/UIScrollView (= 2.0.14)
110
+ - TDFCategories/UITableViewCell (= 2.0.14)
111
+ - TDFCategories/UITableViewHeaderFooterView (= 2.0.14)
112
+ - TDFCategories/UIView (= 2.0.14)
113
+ - TDFCategories/UIViewController (= 2.0.14)
114
+ - TDFCategories/NSBundle (2.0.14)
115
+ - TDFCategories/NSData (2.0.14)
116
+ - TDFCategories/NSDictionay (2.0.14)
117
+ - TDFCategories/NSMutableArray (2.0.14)
118
+ - TDFCategories/NSString (2.0.14):
119
+ - TDFDataCenterKit
120
+ - TDFCategories/UICollectionReusableView (2.0.14)
121
+ - TDFCategories/UICollectionViewCell (2.0.14)
122
+ - TDFCategories/UIColor (2.0.14)
123
+ - TDFCategories/UIImage (2.0.14)
124
+ - TDFCategories/UILabel (2.0.14)
125
+ - TDFCategories/UIScrollView (2.0.14)
126
+ - TDFCategories/UITableViewCell (2.0.14)
127
+ - TDFCategories/UITableViewHeaderFooterView (2.0.14)
128
+ - TDFCategories/UIView (2.0.14)
129
+ - TDFCategories/UIViewController (2.0.14)
130
+ - TDFCelebiFunctions (0.3.9):
131
+ - Celebi
132
+ - TDFCelebiParser (0.5.2)
133
+ - TDFCommonUtility (0.1.0):
134
+ - Masonry
135
+ - TDFCommunalModel (0.1.8):
136
+ - Mantle
137
+ - Masonry
138
+ - PinYin4Objc
139
+ - TDFBatchOperation
140
+ - TDFCategories
141
+ - TDFCoreProtocol
142
+ - TDFOldBaseUtil
143
+ - YYModel
144
+ - TDFComponents (1.9.4):
145
+ - TDFComponents/Business (= 1.9.4)
146
+ - TDFComponents/Core (= 1.9.4)
147
+ - TDFComponents/Login (= 1.9.4)
148
+ - TDFComponents/SupplyChainBridge (= 1.9.4)
149
+ - TDFComponents/Business (1.9.4):
150
+ - Celebi
151
+ - TDFCommonUtility
152
+ - TDFComponents/SupplyChainBridge
153
+ - TDFImageSourceManager
154
+ - TDFOldBaseUtil
155
+ - TDFComponents/Core (1.9.4):
156
+ - Masonry
157
+ - TDFComponents/Login (1.9.4):
158
+ - ReactiveObjC
159
+ - SDWebImage
160
+ - TDFAPIKit
161
+ - TDFBatchOperation
162
+ - TDFCategories
163
+ - TDFCommunalModel
164
+ - TDFComponents/Core
165
+ - TDFCore
166
+ - TDFDateFormatKit
167
+ - TDFKeyboard
168
+ - TDFOldBaseUtil
169
+ - TDFOldSystemService
170
+ - TDFPickerProxy
171
+ - TDFProvinceManager
172
+ - TTTAttributedLabel
173
+ - YYText
174
+ - TDFComponents/SupplyChainBridge (1.9.4):
175
+ - TDFComponents/Login
176
+ - TDFCore (1.2.0):
177
+ - GYLThemeKit (~> 0.0.1)
178
+ - libextobjc
179
+ - MBProgressHUD (~> 1.0)
180
+ - RegexKitLite
181
+ - SDWebImage
182
+ - TDFAdaptationKit
183
+ - TDFCategories/NSString
184
+ - TDFCategories/UIColor
185
+ - TDFCategories/UIImage
186
+ - TDFCategories/UIViewController
187
+ - TDFCoreProtocol (~> 1.0)
188
+ - TDFDataCenterKit
189
+ - TDFNetworking
190
+ - TDFOldBaseUtil
191
+ - TDFStyleKit
192
+ - TDFThemeKit
193
+ - TDFCoreProtocol (1.2.5)
194
+ - TDFDataBinding (0.2.4)
195
+ - TDFDataCenterKit (0.2.4)
196
+ - TDFDateFormatKit (1.0.5)
197
+ - TDFHTTPDNSKit (0.0.5):
198
+ - TDFSecurityKit
199
+ - TDFImageSourceManager (1.2.5):
200
+ - ReactiveObjC
201
+ - SDWebImage
202
+ - TDFAPIHUDPresenter
203
+ - TDFAPIKit (~> 1.0)
204
+ - TDFCategories
205
+ - TDFDataCenterKit
206
+ - TDFLogger
207
+ - TDFMediatorKit
208
+ - TOCropViewController
209
+ - TDFKeyboard (0.1.7)
210
+ - TDFLogger (1.2.0):
211
+ - TDFLogger/Core (= 1.2.0)
212
+ - TDFLogger/Initializer (= 1.2.0)
213
+ - TDFLogger/Core (1.2.0):
214
+ - CocoaLumberjack (~> 3.0)
215
+ - TDFLogger/Initializer (1.2.0):
216
+ - TDFLogger/Core
217
+ - TDFModuleKit
218
+ - TDFMediatorKit (0.9.21)
219
+ - TDFModuleKit (1.0.3)
220
+ - TDFNetworking (0.5.3):
221
+ - AFNetworking
222
+ - CocoaSecurity
223
+ - MBProgressHUD
224
+ - Nimbus/Core
225
+ - NSHash
226
+ - TDFDataCenterKit
227
+ - TDFHTTPDNSKit
228
+ - TDFOldBaseUtil (0.2.20):
229
+ - JSONKit
230
+ - Masonry
231
+ - PinYin4Objc
232
+ - RegexKitLite
233
+ - SDWebImage
234
+ - TDFBaseInfoKit
235
+ - TDFNetworking (~> 0.3)
236
+ - TDFOldSystemService (0.2.6):
237
+ - TBXML
238
+ - TDFBaseInfoKit
239
+ - TDFCoreProtocol
240
+ - TDFDataCenterKit
241
+ - TDFOldBaseUtil
242
+ - YYModel
243
+ - TDFPickerProxy (1.1.20):
244
+ - TDFPickerProxy/TdfireBinary (= 1.1.20)
245
+ - TDFPickerProxy/TdfireBinary (1.1.20):
246
+ - Masonry
247
+ - TDFBatchOperation (~> 1.0)
248
+ - TDFDateFormatKit
249
+ - TDFPresentationController (~> 1.0)
250
+ - TDFProvinceManager
251
+ - TDFPresentationController (1.0.2)
252
+ - TDFProvinceManager (0.0.8):
253
+ - TDFBatchOperation
254
+ - YYModel
255
+ - TDFSecurityKit (0.1.0)
256
+ - TDFStyleKit (0.2.0)
257
+ - TDFThemeKit (0.1.1):
258
+ - YYModel
259
+ - test (0.1.0)
260
+ - TOCropViewController (0.0.5)
261
+ - TTTAttributedLabel (2.0.0.1)
262
+ - YYModel (1.0.4.2)
263
+ - YYText (1.0.7.1)
264
+
265
+ DEPENDENCIES:
266
+ - TDFBaseUI
267
+ - TDFCelebiFunctions
268
+ - TDFComponents
269
+ - TDFCoreProtocol
270
+ - test (from `../`)
271
+
272
+ EXTERNAL SOURCES:
273
+ test:
274
+ :path: "../"
275
+
276
+ SPEC CHECKSUMS:
277
+ AFNetworking: 032062ffb24bf902c3040070304569831ee6eeea
278
+ Celebi: 3c38b21ef1c9750baef67fc1c3ee2722aa7f8e4e
279
+ CocoaLumberjack: 3c886aa76d56528b0482320c2549c925adb67fd2
280
+ CocoaSecurity: b61a06b3567d9a817ea2fe457cbe691669886288
281
+ FLAnimatedImage: e002796fb1f89aff2d28ce6b4979cfb27a8d8da5
282
+ GYLThemeKit: d5f5eb1695fc8091628079f0af54f880232a61fd
283
+ JSONKit: 38454d68cc832cb1a878475a6d1b9db148e5be77
284
+ libextobjc: 728d4dc0e915e8f0713fc4d9c100feaec4fe52f0
285
+ libwebp: ede9260022b6604376c51f660b2662b4b76f2fa5
286
+ Mantle: 2b5ef77100047f0bb201dd09c9f78bbb3ea9e7cf
287
+ Masonry: '05666589d973e2a8624b5c6134b2e1015f3dfdac'
288
+ MBProgressHUD: 51126d6c82778b4a5fa3636f6e91ff1a2bd5a2c4
289
+ Nimbus: 76f04cfdbd2ab192cb3f61b3e5cc4e09117b7595
290
+ NSHash: 2061df4462dde0b8583dbcc620eaf80b227dd845
291
+ PinYin4Objc: ac8acd50672dc33ec6e7b5bf969cdf8115645234
292
+ ReactiveObjC: 5b6952495a73242167f201ee017c335daa802574
293
+ RegexKitLite: b78a6e6d457040b7e9a7cad0f30d0c83e5e0eaa4
294
+ SDWebImage: 8ffb21d8dc6efff54c166bc5505f9c1ff18061ff
295
+ TBXML: '05775619d410c76b5f85b117522d016f349ed5ec'
296
+ TDFAdaptationKit: a8d77595709aed38180d93cdaa93f9fa78f9b2f4
297
+ TDFAPIHUDPresenter: aaa406637e2802697bc99011b05f229ab464df70
298
+ TDFAPIKit: 9db08b3931a1565ed5972ed5a85e1a47a9cc3a0a
299
+ TDFAsync: d6e9cbf6e8af5f28d16eb69821240852cceca23b
300
+ TDFBaseInfoKit: 448d51c9e23c2c6b7fc8047d74fae15e5925c426
301
+ TDFBaseUI: c57f80706c881305cba1fdc4acbb23a018fb7f4f
302
+ TDFBatchOperation: fdba5a19e6d9a520a28f8b71515df0841f622b59
303
+ TDFCategories: 6fee21b25b72f50749ae15b3a6bf25efb292ee0b
304
+ TDFCelebiFunctions: 3884d6c8f67a562ced0079da144b657cfa31d5eb
305
+ TDFCelebiParser: 268c3497760cba08f32402f5cd11a15e39228511
306
+ TDFCommonUtility: dce0608012023d238863854451fb0c3c73f2c46a
307
+ TDFCommunalModel: df8b24c12d03c614feb6d643eda3df0e1d867e7d
308
+ TDFComponents: 15891bbfae1edc6071312a6756c157b369ad39c4
309
+ TDFCore: 6bb8c9c29a95404b02f0f9d3f05465fb017453c3
310
+ TDFCoreProtocol: cef7fe5894e1bb178946cdbb65eec226aa816656
311
+ TDFDataBinding: 3be1c69001aa50e61975b07ce5f659848d4a9ad6
312
+ TDFDataCenterKit: e1193e9251dcd4bf0b861cf10e926a95db335391
313
+ TDFDateFormatKit: 729f4bd1b0ab5ba2383c758351664bcac1dd6507
314
+ TDFHTTPDNSKit: dd45426f9aff78a1139d45facd4003761dfaf6df
315
+ TDFImageSourceManager: 0a4bb1f7e16891dc5242a465b6e68d0c1ad861e7
316
+ TDFKeyboard: 79275c2e2850eb2c220d85dd158d6a1cc701c774
317
+ TDFLogger: 7eed4ef751cc42fc44ec470f9aa39c32e3a3a22d
318
+ TDFMediatorKit: cce96aa5ad938b0c558012506c182de63083b076
319
+ TDFModuleKit: 9f195cb1aca1c773a47c0fa7138bdd73c35bb394
320
+ TDFNetworking: aa19c50ba4f31cb9b8fc45bac864fee14995a61f
321
+ TDFOldBaseUtil: 524e2d07b2c08a9d164c20100cc591cbb090530f
322
+ TDFOldSystemService: 21b3125907ef736bd42e0a686c1611a37e464a46
323
+ TDFPickerProxy: aa9770c90b3baef53bea607af2df61f1590031d8
324
+ TDFPresentationController: 378575ff47176bf2efec25a5995a662b662a8bec
325
+ TDFProvinceManager: 58b48bb16076c64a0eefb690b80abf13d45cb5fe
326
+ TDFSecurityKit: 6c9f8923c6bcfc3ba5083f212a36862598f97c8b
327
+ TDFStyleKit: be5429ac923bfbc47e6bd381d582610af2428a79
328
+ TDFThemeKit: 72be0908ce7a6fc92a4ae6322786e80e2b68e631
329
+ test: fb2905095e3417a905339ffdb06e336029a4a95c
330
+ TOCropViewController: 22a00046ec4e8b06521c77694421fb9568e1682b
331
+ TTTAttributedLabel: 4c78ee313a5900522091fed41a008b63a749d2a7
332
+ YYModel: e7c12e5834b520a7b9b2dcb6bd822e0bc546d45c
333
+ YYText: d4c12072e7a98c9d1ae60904adf53f9e4b59e625
334
+
335
+ PODFILE CHECKSUM: d02ee15d0a00d734ae15348bfe913b2a1ead0cab
336
+
337
+ COCOAPODS: 1.2.1