Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
manondidi committed Apr 18, 2019
1 parent 7bdab0e commit a0a9465
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion swiftArch.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'swiftArch'
s.version = '1.2.2'
s.version = '1.2.3'
s.summary = 'swift开发脚手架'

# This description is used to generate tags and improve search results.
Expand Down
2 changes: 1 addition & 1 deletion swiftArch/Classes/http/HttpClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class HttpClient: NSObject {



public func rxRequest<T:HandyJSON>(url: String, method: HTTPMethod,encoding:URLEncoding = URLEncoding.default, pathParams: Dictionary<String, String> = [:], params: Dictionary<String, String> = [:])
public func rxRequest<T:HandyJSON>(url: String, method: HTTPMethod,encoding:ParameterEncoding = URLEncoding.default, pathParams: Dictionary<String, String> = [:], params: Dictionary<String, String> = [:])
-> Observable<T> {
var pathUrl = baseUrl! + url;
for (key, value) in pathParams {
Expand Down

0 comments on commit a0a9465

Please sign in to comment.