Commit e1fe11cf authored by 汪洋's avatar 汪洋

spec对内部GM库不使用版本依赖

parent e9909c55
...@@ -15,9 +15,9 @@ PODS: ...@@ -15,9 +15,9 @@ PODS:
- AFNetworking/UIKit (3.1.0): - AFNetworking/UIKit (3.1.0):
- AFNetworking/NSURLSession - AFNetworking/NSURLSession
- GMBase (0.0.8): - GMBase (0.0.8):
- GMNetService (= 0.1.3) - GMNetService
- GMPhobos (= 0.2.9) - GMPhobos
- GMRefresh (= 0.1.3) - GMRefresh
- JSONModel (= 1.2.0) - JSONModel (= 1.2.0)
- Masonry (= 1.0.1) - Masonry (= 1.0.1)
- MBProgressHUD (= 0.9.2) - MBProgressHUD (= 0.9.2)
...@@ -26,7 +26,7 @@ PODS: ...@@ -26,7 +26,7 @@ PODS:
- TMCache (~> 2.1.0) - TMCache (~> 2.1.0)
- GMNetService (0.1.3): - GMNetService (0.1.3):
- AFNetworking (= 3.1.0) - AFNetworking (= 3.1.0)
- GMPhobos (0.2.9): - GMPhobos (0.2.10):
- GMCache (~> 0.1.0) - GMCache (~> 0.1.0)
- GMRefresh (0.1.3): - GMRefresh (0.1.3):
- MJRefresh (~> 3.1.0) - MJRefresh (~> 3.1.0)
...@@ -46,10 +46,10 @@ EXTERNAL SOURCES: ...@@ -46,10 +46,10 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS: SPEC CHECKSUMS:
AFNetworking: 5e0e199f73d8626b11e79750991f5d173d1f8b67 AFNetworking: 5e0e199f73d8626b11e79750991f5d173d1f8b67
GMBase: 953c99e1b60605e60eaa7766550ae28345ec4e92 GMBase: a2bc5ffc054605e22ae83a99268efc67a69aeac8
GMCache: a7b06a2d8a5a1c7cf023055c631ba9a0cd7c39fc GMCache: a7b06a2d8a5a1c7cf023055c631ba9a0cd7c39fc
GMNetService: 2eb74ed62512078e9f00bc7006227a93c2acdf32 GMNetService: 2eb74ed62512078e9f00bc7006227a93c2acdf32
GMPhobos: c9a93b2bc8c977820b249c9c615204133358cc09 GMPhobos: f3d01f5cf8e49abbdcbc044571cbe2e82bdd4ff4
GMRefresh: a37fb054e758805ec2a6f9b632cf3dc861bb3cf9 GMRefresh: a37fb054e758805ec2a6f9b632cf3dc861bb3cf9
JSONModel: 12523685c4b623553ccf844bbbf7007624317b2c JSONModel: 12523685c4b623553ccf844bbbf7007624317b2c
Masonry: a1a931a0d08870ed8ae415a2ea5ea68ebcac77df Masonry: a1a931a0d08870ed8ae415a2ea5ea68ebcac77df
......
...@@ -46,13 +46,13 @@ ...@@ -46,13 +46,13 @@
- (void)setUserId:(NSInteger)userId; - (void)setUserId:(NSInteger)userId;
/*! /*!
* @author zhaiguojun, 16-05-30 * @author zhaiguojun, 16-05-31
* *
* @brief 用户当前的城市id * @brief 用户当前的城市id
* *
* @param currentCityId * @param currentCityId
* *
* @since 0.2.5 * @since 0.2.7
*/ */
- (void)setCurrentCityId:(NSString *)currentCityId; - (void)setCurrentCityId:(NSString *)currentCityId;
......
...@@ -25,13 +25,9 @@ static NSString *sdkVersion = @"110"; ...@@ -25,13 +25,9 @@ static NSString *sdkVersion = @"110";
@property (strong, nonatomic) NSString *appVersion; @property (strong, nonatomic) NSString *appVersion;
@property (assign, nonatomic) NSInteger userId; @property (assign, nonatomic) NSInteger userId;
@property (assign, nonatomic) BOOL logEnabled; @property (assign, nonatomic) BOOL logEnabled;
@property (strong, nonatomic) NSString *businessId;
@property (strong, nonatomic) NSString *sessionId; @property (strong, nonatomic) NSString *sessionId;
@property (strong, nonatomic) NSString *pageName;
@property (strong, nonatomic) NSString *refererPageName;
@property (strong, nonatomic) NSString *pageEnterTime;
@property (strong, nonatomic) NSString *pageExitTime;
@property (strong, nonatomic) NSMutableDictionary *pageEnterParam; @property (strong, nonatomic) NSMutableDictionary *pageEnterParam;
@end @end
...@@ -229,8 +225,8 @@ static NSString *sdkVersion = @"110"; ...@@ -229,8 +225,8 @@ static NSString *sdkVersion = @"110";
- (void)onPageStart:(NSString *)pageName businessId:(NSString *)businessId referer:(NSString *)refererPageName{ - (void)onPageStart:(NSString *)pageName businessId:(NSString *)businessId referer:(NSString *)refererPageName{
_pageEnterParam = [NSMutableDictionary dictionaryWithObjectsAndKeys: _pageEnterParam = [NSMutableDictionary dictionaryWithObjectsAndKeys:
pageName?:@"",@"page_name", pageName?:@"",@"page_name",
self.businessId?:@"",@"business_id", businessId?:@"",@"business_id",
self.refererPageName?:@"",@"referer", refererPageName?:@"",@"referer",
[self currentTime],@"in",nil]; [self currentTime],@"in",nil];
} }
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
"private_header_files": "GMBase/Classes/GMBaseUtil.h", "private_header_files": "GMBase/Classes/GMBaseUtil.h",
"dependencies": { "dependencies": {
"GMRefresh": [ "GMRefresh": [
"0.1.3"
], ],
"JSONModel": [ "JSONModel": [
"1.2.0" "1.2.0"
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
"1.4" "1.4"
], ],
"GMNetService": [ "GMNetService": [
"0.1.3"
], ],
"MBProgressHUD": [ "MBProgressHUD": [
"0.9.2" "0.9.2"
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
"1.0.1" "1.0.1"
], ],
"GMPhobos": [ "GMPhobos": [
"0.2.9"
] ]
} }
} }
...@@ -15,9 +15,9 @@ PODS: ...@@ -15,9 +15,9 @@ PODS:
- AFNetworking/UIKit (3.1.0): - AFNetworking/UIKit (3.1.0):
- AFNetworking/NSURLSession - AFNetworking/NSURLSession
- GMBase (0.0.8): - GMBase (0.0.8):
- GMNetService (= 0.1.3) - GMNetService
- GMPhobos (= 0.2.9) - GMPhobos
- GMRefresh (= 0.1.3) - GMRefresh
- JSONModel (= 1.2.0) - JSONModel (= 1.2.0)
- Masonry (= 1.0.1) - Masonry (= 1.0.1)
- MBProgressHUD (= 0.9.2) - MBProgressHUD (= 0.9.2)
...@@ -26,7 +26,7 @@ PODS: ...@@ -26,7 +26,7 @@ PODS:
- TMCache (~> 2.1.0) - TMCache (~> 2.1.0)
- GMNetService (0.1.3): - GMNetService (0.1.3):
- AFNetworking (= 3.1.0) - AFNetworking (= 3.1.0)
- GMPhobos (0.2.9): - GMPhobos (0.2.10):
- GMCache (~> 0.1.0) - GMCache (~> 0.1.0)
- GMRefresh (0.1.3): - GMRefresh (0.1.3):
- MJRefresh (~> 3.1.0) - MJRefresh (~> 3.1.0)
...@@ -46,10 +46,10 @@ EXTERNAL SOURCES: ...@@ -46,10 +46,10 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS: SPEC CHECKSUMS:
AFNetworking: 5e0e199f73d8626b11e79750991f5d173d1f8b67 AFNetworking: 5e0e199f73d8626b11e79750991f5d173d1f8b67
GMBase: 953c99e1b60605e60eaa7766550ae28345ec4e92 GMBase: a2bc5ffc054605e22ae83a99268efc67a69aeac8
GMCache: a7b06a2d8a5a1c7cf023055c631ba9a0cd7c39fc GMCache: a7b06a2d8a5a1c7cf023055c631ba9a0cd7c39fc
GMNetService: 2eb74ed62512078e9f00bc7006227a93c2acdf32 GMNetService: 2eb74ed62512078e9f00bc7006227a93c2acdf32
GMPhobos: c9a93b2bc8c977820b249c9c615204133358cc09 GMPhobos: f3d01f5cf8e49abbdcbc044571cbe2e82bdd4ff4
GMRefresh: a37fb054e758805ec2a6f9b632cf3dc861bb3cf9 GMRefresh: a37fb054e758805ec2a6f9b632cf3dc861bb3cf9
JSONModel: 12523685c4b623553ccf844bbbf7007624317b2c JSONModel: 12523685c4b623553ccf844bbbf7007624317b2c
Masonry: a1a931a0d08870ed8ae415a2ea5ea68ebcac77df Masonry: a1a931a0d08870ed8ae415a2ea5ea68ebcac77df
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>FMWK</string> <string>FMWK</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.2.9</string> <string>0.2.10</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
......
...@@ -10,11 +10,11 @@ Pod::Spec.new do |s| ...@@ -10,11 +10,11 @@ Pod::Spec.new do |s|
s.source_files = 'GMBase/Classes/**/*' s.source_files = 'GMBase/Classes/**/*'
s.private_header_files = 'GMBase/Classes/GMBaseUtil.h' s.private_header_files = 'GMBase/Classes/GMBaseUtil.h'
s.dependency 'GMRefresh', '0.1.3' s.dependency 'GMRefresh'
s.dependency 'JSONModel', '1.2.0' s.dependency 'JSONModel', '1.2.0'
s.dependency 'UITableView+FDTemplateLayoutCell', '1.4' s.dependency 'UITableView+FDTemplateLayoutCell', '1.4'
s.dependency 'GMNetService', '0.1.3' s.dependency 'GMNetService'
s.dependency 'MBProgressHUD', '0.9.2' s.dependency 'MBProgressHUD', '0.9.2'
s.dependency 'Masonry' , '1.0.1' s.dependency 'Masonry' , '1.0.1'
s.dependency 'GMPhobos' , '0.2.9' s.dependency 'GMPhobos'
end end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment