Skip to content

Instantly share code, notes, and snippets.

View joeljfischer's full-sized avatar

Joel Fischer joeljfischer

View GitHub Profile
@joeljfischer
joeljfischer / SDLEnum.h
Last active August 29, 2015 14:14
SDLEnum Redesign Example
#import <Foundation/Foundation.h>
@interface SDLEnum : NSObject
+ (NSDictionary *)map;
+ (NSUInteger)transformString:(NSString *)stringValue;
+ (NSString *)transformEnum:(NSUInteger)enumValue;
@end
@joeljfischer
joeljfischer / OctoKit.podspec
Created March 11, 2014 03:11
A more up to date Octokit built off the main branch on 2014/03/10
Pod::Spec.new do |s|
s.name = "OctoKit"
s.version = "0.4"
s.summary = "GitHub API client for Objective-C."
s.homepage = "https://github.com/octokit/octokit.objc"
s.license = "MIT"
s.author = { "GitHub" => "[email protected]" }
s.source = { :git => "https://github.com/octokit/octokit.objc.git",