Skip to content

Instantly share code, notes, and snippets.

@onelittlefish
onelittlefish / RKObjectManager+PutQueryParams.h
Created July 10, 2013 21:46
Category for RestKit's RKObjectManager that allows PUTs and POSTs with query parameters
//
// RKObjectManager+PutQueryParams.h
//
//
#import "RKObjectManager.h"
@interface RKObjectManager (PutQueryParams)
/**
@onelittlefish
onelittlefish / DetailedLogFormatter.h
Created July 10, 2013 21:39
Custom log formatter for CocoaLumberjack. Example: 2013-07-10 14:52:50.072 [707] -[FooService barMethodWithBaz:][Line 50] [verbose] Loading bars...
//
// DetailedLogFormatter.h
//
// Uses this format:
// yyyy-MM-dd HH:mm:ss.SSS [threadID] -[FileName function][Line #] [logLevel] Message
// Example:
// 2013-04-25 14:52:50.072 [707] -[FooService barMethodWithBaz:][Line 50] [verbose] Loading bars...
//
#import <Foundation/Foundation.h>