File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -69,12 +69,12 @@ extension String {
6969
7070/// Log the initialization of an object.
7171func logInit( _ object: AnyObject ) {
72- print ( " <INIT> \( Unmanaged . passUnretained ( object) . toOpaque ( ) ) ( \( type ( of: object) ) ) \( object. description ) " )
72+ print ( " <INIT> \( Unmanaged . passUnretained ( object) . toOpaque ( ) ) ( \( type ( of: object) ) ) \( String ( describing : object) ) " )
7373}
7474
7575/// Log the termination ("de-initialization" in Swift terms) of an object.
7676func logTerm( _ object: AnyObject ) {
77- print ( " <TERM> \( Unmanaged . passUnretained ( object) . toOpaque ( ) ) ( \( type ( of: object) ) ) \( object. description ) " )
77+ print ( " <TERM> \( Unmanaged . passUnretained ( object) . toOpaque ( ) ) ( \( type ( of: object) ) ) \( String ( describing : object) ) " )
7878}
7979
8080// MARK: - Collection shuffling
Original file line number Diff line number Diff line change 5454desc "Available options: type:major|minor|patch"
5555lane :deploy do |options |
5656 prepare_git ( 'master' )
57+ pod_lib_lint ( verbose : true )
5758 increment_version_number (
5859 bump_type : options [ :type ]
5960 )
You can’t perform that action at this time.
0 commit comments