TemplateInfo 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.DS_Store +0 -0
- data/.gitignore +2 -0
- data/TemplateInfo.gemspec +1 -1
- data/bin/tif_create.rb +157 -0
- data/lib/TemplateInfo/version.rb +1 -1
- data/test.xctemplate/.DS_Store +0 -0
- data/test.xctemplate/TemplateInfo.plist +2830 -0
- data/test.xctemplate/TemplateInfo.xml +2842 -0
- data/test.xctemplate/libs/BeeFramework/Bee.h +35 -0
- data/test.xctemplate/libs/BeeFramework/Bee_Precompile.h +143 -0
- data/test.xctemplate/libs/BeeFramework/Core/Bee_Core.h +36 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Foundation.h +54 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Foundation.mm +33 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Log.h +64 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Log.mm +164 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Performance.h +111 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Performance.mm +122 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Runtime.h +98 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Runtime.mm +437 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Sandbox.h +45 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Sandbox.mm +81 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Singleton.h +47 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Singleton.mm +34 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_SystemInfo.h +62 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_SystemInfo.m +147 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Thread.h +64 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Thread.mm +91 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSArray+BeeExtension.h +76 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSArray+BeeExtension.m +300 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSData+BeeExtension.h +44 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSData+BeeExtension.m +92 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSDate+BeeExtension.h +44 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSDate+BeeExtension.m +85 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSDictionary+BeeExtension.h +90 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSDictionary+BeeExtension.m +509 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSNumber+BeeExtension.h +50 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSNumber+BeeExtension.m +64 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeJSON.h +43 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeJSON.m +116 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeNotification.h +66 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeNotification.m +150 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeProperty.h +210 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeProperty.m +34 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeTicker.h +41 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeTicker.m +156 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeTypeConversion.h +49 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeTypeConversion.m +109 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSString+BeeExtension.h +86 -0
- data/test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSString+BeeExtension.m +464 -0
- data/test.xctemplate/libs/BeeFramework/Core/Network/Bee_Network.h +36 -0
- data/test.xctemplate/libs/BeeFramework/Core/Network/Bee_Network.m +33 -0
- data/test.xctemplate/libs/BeeFramework/Core/Network/Bee_Request.h +144 -0
- data/test.xctemplate/libs/BeeFramework/Core/Network/Bee_Request.m +560 -0
- data/test.xctemplate/libs/BeeFramework/Core/Network/Bee_RequestQueue.h +99 -0
- data/test.xctemplate/libs/BeeFramework/Core/Network/Bee_RequestQueue.m +742 -0
- data/test.xctemplate/libs/BeeFramework/Core/Network/Extension/NSObject+BeeRequest.h +62 -0
- data/test.xctemplate/libs/BeeFramework/Core/Network/Extension/NSObject+BeeRequest.m +175 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/0.2.4.zip +0 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_ActiveBase.h +133 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_ActiveBase.m +641 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_ActiveRecord.h +106 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_ActiveRecord.m +1956 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Cache.h +91 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Cache.m +318 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Database.h +223 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Database.m +3007 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Keychain.h +55 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Keychain.m +173 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Storage.h +39 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Storage.m +33 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Extension/NSObject+BeeDatabase.h +47 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Extension/NSObject+BeeDatabase.m +81 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Extension/NSObject+BeeKeychain.h +44 -0
- data/test.xctemplate/libs/BeeFramework/Core/Storage/Extension/NSObject+BeeKeychain.m +57 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Bee_MVC.h +49 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Bee_Controller.h +66 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Bee_Controller.mm +228 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Bee_Message.h +209 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Bee_Message.mm +873 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Bee_MessageQueue.h +75 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Bee_MessageQueue.mm +389 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+ActiveRecord.h +52 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+ActiveRecord.m +150 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+HTTP.h +49 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+HTTP.mm +201 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+JSON.h +52 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+JSON.mm +118 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+XML.h +49 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+XML.mm +78 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/NSObject+BeeMessage.h +57 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/NSObject+BeeMessage.mm +138 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Model/Bee_Model.h +64 -0
- data/test.xctemplate/libs/BeeFramework/MVC/Model/Bee_Model.m +190 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIActionSheet.h +71 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIActionSheet.m +307 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIActivityIndicatorView.h +52 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIActivityIndicatorView.m +152 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIAlertView.h +73 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIAlertView.m +234 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIButton.h +97 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIButton.m +424 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIDatePicker.h +78 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIDatePicker.m +362 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIGridCell.h +82 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIGridCell.m +298 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIImageView.h +110 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIImageView.m +541 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIKeyboard.h +74 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIKeyboard.m +243 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UILabel.h +46 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UILabel.m +99 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIMatrixView.h +124 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIMatrixView.m +821 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UINavigationBar.h +57 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UINavigationBar.m +161 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIOrientation.h +60 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIOrientation.m +146 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIPageControl.h +61 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIPageControl.m +190 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIProgressView.h +47 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIProgressView.m +113 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIPullLoader.h +71 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIPullLoader.m +236 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIScrollView.h +146 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIScrollView.m +1487 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UISegmentedControl.h +60 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UISegmentedControl.m +192 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UISignal.h +126 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UISignal.m +453 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITabBar.h +70 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITabBar.m +249 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITextField.h +67 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITextField.m +242 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITextView.h +75 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITextView.m +311 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITipsView.h +184 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITipsView.m +911 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIWebView.h +65 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIWebView.m +242 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIZoomView.h +91 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIZoomView.m +444 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_View.h +72 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Bee_View.m +38 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/CGRect+BeeExtension.h +79 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/CGRect+BeeExtension.m +288 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIColor+BeeExtension.h +65 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIColor+BeeExtension.m +161 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIFont+BeeExtension.h +45 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIFont+BeeExtension.m +137 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIImage+BeeExtension.h +56 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIImage+BeeExtension.m +218 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+BeeExtension.h +105 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+BeeExtension.m +556 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+BeeUISignal.h +53 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+BeeUISignal.m +104 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+HoldGesture.h +52 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+HoldGesture.m +170 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+PanGesture.h +54 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+PanGesture.m +166 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+SwipeGesture.h +54 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+SwipeGesture.m +184 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+TapGesture.h +57 -0
- data/test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+TapGesture.m +275 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_UIBoard.h +212 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_UIBoard.m +1219 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_UIStack.h +111 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_UIStack.m +694 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_UIStackGroup.h +71 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_UIStackGroup.m +258 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_ViewController.h +45 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_ViewController.m +36 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Extension/UIViewController+BeeExtension.h +57 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Extension/UIViewController+BeeExtension.m +151 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Extension/UIViewController+BeeUISignal.h +53 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Extension/UIViewController+BeeUISignal.m +92 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Extension/UIViewController+UINavigationBar.h +72 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewController/Extension/UIViewController+UINavigationBar.m +175 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UICollection.h +59 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UICollection.m +249 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UILayout.h +199 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UILayout.m +1170 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UIQuery.h +113 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UIQuery.m +710 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UIStyle.h +66 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UIStyle.m +189 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplate.h +69 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplate.m +210 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateAndroid.h +45 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateAndroid.m +59 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateHTML.h +45 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateHTML.m +55 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateJSON.h +45 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateJSON.m +54 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateOmniGraffle.h +45 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateOmniGraffle.m +54 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateXML.h +45 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateXML.m +438 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_ViewLayout.h +60 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_ViewLayout.m +37 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/BeeUIQuery+BeeUIStyle.h +45 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/BeeUIQuery+BeeUIStyle.m +55 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/BeeUIStyle+BeeUIQuery.h +45 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/BeeUIStyle+BeeUIQuery.m +55 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIButton+BeeUIStyle.h +41 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIButton+BeeUIStyle.m +100 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIImageView+BeeUIStyle.h +41 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIImageView+BeeUIStyle.m +101 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UILabel+BeeUIStyle.h +41 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UILabel+BeeUIStyle.m +48 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UITextField+BeeUIStyle.h +41 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UITextField+BeeUIStyle.m +77 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UITextView+BeeUIStyle.h +41 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UITextView+BeeUIStyle.m +47 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIView+BeeUILayout.h +52 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIView+BeeUILayout.m +177 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIView+BeeUIQuery.h +44 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIView+BeeUIQuery.m +57 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIView+BeeUIStyle.h +50 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIView+BeeUIStyle.m +283 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIViewController+BeeUILayout.h +52 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIViewController+BeeUILayout.m +178 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIViewController+BeeUIQuery.h +44 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIViewController+BeeUIQuery.m +58 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIViewController+BeeUIStyle.h +44 -0
- data/test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIViewController+BeeUIStyle.m +57 -0
- metadata +226 -3
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: TemplateInfo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -45,19 +45,242 @@ dependencies:
|
|
45
45
|
version: '0'
|
46
46
|
description: TemplateInfo.plist file creator
|
47
47
|
email:
|
48
|
-
-
|
49
|
-
executables:
|
48
|
+
- shiren1118@126.com
|
49
|
+
executables:
|
50
|
+
- tif_create.rb
|
50
51
|
extensions: []
|
51
52
|
extra_rdoc_files: []
|
52
53
|
files:
|
54
|
+
- .DS_Store
|
53
55
|
- .gitignore
|
54
56
|
- Gemfile
|
55
57
|
- LICENSE.txt
|
56
58
|
- README.md
|
57
59
|
- Rakefile
|
58
60
|
- TemplateInfo.gemspec
|
61
|
+
- bin/tif_create.rb
|
59
62
|
- lib/TemplateInfo.rb
|
60
63
|
- lib/TemplateInfo/version.rb
|
64
|
+
- test.xctemplate/.DS_Store
|
65
|
+
- test.xctemplate/TemplateInfo.plist
|
66
|
+
- test.xctemplate/TemplateInfo.xml
|
67
|
+
- test.xctemplate/libs/BeeFramework/Bee.h
|
68
|
+
- test.xctemplate/libs/BeeFramework/Bee_Precompile.h
|
69
|
+
- test.xctemplate/libs/BeeFramework/Core/Bee_Core.h
|
70
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Foundation.h
|
71
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Foundation.mm
|
72
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Log.h
|
73
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Log.mm
|
74
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Performance.h
|
75
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Performance.mm
|
76
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Runtime.h
|
77
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Runtime.mm
|
78
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Sandbox.h
|
79
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Sandbox.mm
|
80
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Singleton.h
|
81
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Singleton.mm
|
82
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_SystemInfo.h
|
83
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_SystemInfo.m
|
84
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Thread.h
|
85
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Bee_Thread.mm
|
86
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSArray+BeeExtension.h
|
87
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSArray+BeeExtension.m
|
88
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSData+BeeExtension.h
|
89
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSData+BeeExtension.m
|
90
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSDate+BeeExtension.h
|
91
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSDate+BeeExtension.m
|
92
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSDictionary+BeeExtension.h
|
93
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSDictionary+BeeExtension.m
|
94
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSNumber+BeeExtension.h
|
95
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSNumber+BeeExtension.m
|
96
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeJSON.h
|
97
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeJSON.m
|
98
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeNotification.h
|
99
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeNotification.m
|
100
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeProperty.h
|
101
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeProperty.m
|
102
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeTicker.h
|
103
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeTicker.m
|
104
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeTypeConversion.h
|
105
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSObject+BeeTypeConversion.m
|
106
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSString+BeeExtension.h
|
107
|
+
- test.xctemplate/libs/BeeFramework/Core/Foundation/Extension/NSString+BeeExtension.m
|
108
|
+
- test.xctemplate/libs/BeeFramework/Core/Network/Bee_Network.h
|
109
|
+
- test.xctemplate/libs/BeeFramework/Core/Network/Bee_Network.m
|
110
|
+
- test.xctemplate/libs/BeeFramework/Core/Network/Bee_Request.h
|
111
|
+
- test.xctemplate/libs/BeeFramework/Core/Network/Bee_Request.m
|
112
|
+
- test.xctemplate/libs/BeeFramework/Core/Network/Bee_RequestQueue.h
|
113
|
+
- test.xctemplate/libs/BeeFramework/Core/Network/Bee_RequestQueue.m
|
114
|
+
- test.xctemplate/libs/BeeFramework/Core/Network/Extension/NSObject+BeeRequest.h
|
115
|
+
- test.xctemplate/libs/BeeFramework/Core/Network/Extension/NSObject+BeeRequest.m
|
116
|
+
- test.xctemplate/libs/BeeFramework/Core/Storage/0.2.4.zip
|
117
|
+
- test.xctemplate/libs/BeeFramework/Core/Storage/Bee_ActiveBase.h
|
118
|
+
- test.xctemplate/libs/BeeFramework/Core/Storage/Bee_ActiveBase.m
|
119
|
+
- test.xctemplate/libs/BeeFramework/Core/Storage/Bee_ActiveRecord.h
|
120
|
+
- test.xctemplate/libs/BeeFramework/Core/Storage/Bee_ActiveRecord.m
|
121
|
+
- test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Cache.h
|
122
|
+
- test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Cache.m
|
123
|
+
- test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Database.h
|
124
|
+
- test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Database.m
|
125
|
+
- test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Keychain.h
|
126
|
+
- test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Keychain.m
|
127
|
+
- test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Storage.h
|
128
|
+
- test.xctemplate/libs/BeeFramework/Core/Storage/Bee_Storage.m
|
129
|
+
- test.xctemplate/libs/BeeFramework/Core/Storage/Extension/NSObject+BeeDatabase.h
|
130
|
+
- test.xctemplate/libs/BeeFramework/Core/Storage/Extension/NSObject+BeeDatabase.m
|
131
|
+
- test.xctemplate/libs/BeeFramework/Core/Storage/Extension/NSObject+BeeKeychain.h
|
132
|
+
- test.xctemplate/libs/BeeFramework/Core/Storage/Extension/NSObject+BeeKeychain.m
|
133
|
+
- test.xctemplate/libs/BeeFramework/MVC/Bee_MVC.h
|
134
|
+
- test.xctemplate/libs/BeeFramework/MVC/Controller/Bee_Controller.h
|
135
|
+
- test.xctemplate/libs/BeeFramework/MVC/Controller/Bee_Controller.mm
|
136
|
+
- test.xctemplate/libs/BeeFramework/MVC/Controller/Bee_Message.h
|
137
|
+
- test.xctemplate/libs/BeeFramework/MVC/Controller/Bee_Message.mm
|
138
|
+
- test.xctemplate/libs/BeeFramework/MVC/Controller/Bee_MessageQueue.h
|
139
|
+
- test.xctemplate/libs/BeeFramework/MVC/Controller/Bee_MessageQueue.mm
|
140
|
+
- test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+ActiveRecord.h
|
141
|
+
- test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+ActiveRecord.m
|
142
|
+
- test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+HTTP.h
|
143
|
+
- test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+HTTP.mm
|
144
|
+
- test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+JSON.h
|
145
|
+
- test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+JSON.mm
|
146
|
+
- test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+XML.h
|
147
|
+
- test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/BeeMessage+XML.mm
|
148
|
+
- test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/NSObject+BeeMessage.h
|
149
|
+
- test.xctemplate/libs/BeeFramework/MVC/Controller/Extension/NSObject+BeeMessage.mm
|
150
|
+
- test.xctemplate/libs/BeeFramework/MVC/Model/Bee_Model.h
|
151
|
+
- test.xctemplate/libs/BeeFramework/MVC/Model/Bee_Model.m
|
152
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIActionSheet.h
|
153
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIActionSheet.m
|
154
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIActivityIndicatorView.h
|
155
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIActivityIndicatorView.m
|
156
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIAlertView.h
|
157
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIAlertView.m
|
158
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIButton.h
|
159
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIButton.m
|
160
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIDatePicker.h
|
161
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIDatePicker.m
|
162
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIGridCell.h
|
163
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIGridCell.m
|
164
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIImageView.h
|
165
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIImageView.m
|
166
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIKeyboard.h
|
167
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIKeyboard.m
|
168
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UILabel.h
|
169
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UILabel.m
|
170
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIMatrixView.h
|
171
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIMatrixView.m
|
172
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UINavigationBar.h
|
173
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UINavigationBar.m
|
174
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIOrientation.h
|
175
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIOrientation.m
|
176
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIPageControl.h
|
177
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIPageControl.m
|
178
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIProgressView.h
|
179
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIProgressView.m
|
180
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIPullLoader.h
|
181
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIPullLoader.m
|
182
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIScrollView.h
|
183
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIScrollView.m
|
184
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UISegmentedControl.h
|
185
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UISegmentedControl.m
|
186
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UISignal.h
|
187
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UISignal.m
|
188
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITabBar.h
|
189
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITabBar.m
|
190
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITextField.h
|
191
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITextField.m
|
192
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITextView.h
|
193
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITextView.m
|
194
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITipsView.h
|
195
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UITipsView.m
|
196
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIWebView.h
|
197
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIWebView.m
|
198
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIZoomView.h
|
199
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_UIZoomView.m
|
200
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_View.h
|
201
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Bee_View.m
|
202
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/CGRect+BeeExtension.h
|
203
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/CGRect+BeeExtension.m
|
204
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIColor+BeeExtension.h
|
205
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIColor+BeeExtension.m
|
206
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIFont+BeeExtension.h
|
207
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIFont+BeeExtension.m
|
208
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIImage+BeeExtension.h
|
209
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIImage+BeeExtension.m
|
210
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+BeeExtension.h
|
211
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+BeeExtension.m
|
212
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+BeeUISignal.h
|
213
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+BeeUISignal.m
|
214
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+HoldGesture.h
|
215
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+HoldGesture.m
|
216
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+PanGesture.h
|
217
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+PanGesture.m
|
218
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+SwipeGesture.h
|
219
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+SwipeGesture.m
|
220
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+TapGesture.h
|
221
|
+
- test.xctemplate/libs/BeeFramework/MVC/View/Extension/UIView+TapGesture.m
|
222
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_UIBoard.h
|
223
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_UIBoard.m
|
224
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_UIStack.h
|
225
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_UIStack.m
|
226
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_UIStackGroup.h
|
227
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_UIStackGroup.m
|
228
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_ViewController.h
|
229
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewController/Bee_ViewController.m
|
230
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewController/Extension/UIViewController+BeeExtension.h
|
231
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewController/Extension/UIViewController+BeeExtension.m
|
232
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewController/Extension/UIViewController+BeeUISignal.h
|
233
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewController/Extension/UIViewController+BeeUISignal.m
|
234
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewController/Extension/UIViewController+UINavigationBar.h
|
235
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewController/Extension/UIViewController+UINavigationBar.m
|
236
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UICollection.h
|
237
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UICollection.m
|
238
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UILayout.h
|
239
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UILayout.m
|
240
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UIQuery.h
|
241
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UIQuery.m
|
242
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UIStyle.h
|
243
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UIStyle.m
|
244
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplate.h
|
245
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplate.m
|
246
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateAndroid.h
|
247
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateAndroid.m
|
248
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateHTML.h
|
249
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateHTML.m
|
250
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateJSON.h
|
251
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateJSON.m
|
252
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateOmniGraffle.h
|
253
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateOmniGraffle.m
|
254
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateXML.h
|
255
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_UITemplateXML.m
|
256
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_ViewLayout.h
|
257
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Bee_ViewLayout.m
|
258
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/BeeUIQuery+BeeUIStyle.h
|
259
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/BeeUIQuery+BeeUIStyle.m
|
260
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/BeeUIStyle+BeeUIQuery.h
|
261
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/BeeUIStyle+BeeUIQuery.m
|
262
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIButton+BeeUIStyle.h
|
263
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIButton+BeeUIStyle.m
|
264
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIImageView+BeeUIStyle.h
|
265
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIImageView+BeeUIStyle.m
|
266
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UILabel+BeeUIStyle.h
|
267
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UILabel+BeeUIStyle.m
|
268
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UITextField+BeeUIStyle.h
|
269
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UITextField+BeeUIStyle.m
|
270
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UITextView+BeeUIStyle.h
|
271
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UITextView+BeeUIStyle.m
|
272
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIView+BeeUILayout.h
|
273
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIView+BeeUILayout.m
|
274
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIView+BeeUIQuery.h
|
275
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIView+BeeUIQuery.m
|
276
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIView+BeeUIStyle.h
|
277
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIView+BeeUIStyle.m
|
278
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIViewController+BeeUILayout.h
|
279
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIViewController+BeeUILayout.m
|
280
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIViewController+BeeUIQuery.h
|
281
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIViewController+BeeUIQuery.m
|
282
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIViewController+BeeUIStyle.h
|
283
|
+
- test.xctemplate/libs/BeeFramework/MVC/ViewLayout/Extension/UIViewController+BeeUIStyle.m
|
61
284
|
homepage: https://github.com/i5ting/TemplateInfo.plist
|
62
285
|
licenses:
|
63
286
|
- MIT
|