Skip to content

Instantly share code, notes, and snippets.

View jawwad's full-sized avatar

Jawwad Ahmad jawwad

View GitHub Profile
@jawwad
jawwad / Kiwi_1.1.1.podspec
Last active December 10, 2015 08:48
A copy of the Kiwi 1.1.1 podspec with $(inherited) removed from FRAMEWORK_SEARCH_PATHS
Pod::Spec.new do |s|
s.name = 'Kiwi'
s.version = '1.1.1'
s.summary = 'A Behavior Driven Development library for iPhone and iPad development.'
s.homepage = 'http://kiwi-lib.info'
s.authors = { 'Allen Ding' => '[email protected]', 'Luke Redpath' => '[email protected]' }
s.license = { :type => 'MIT', :file => 'License.txt' }
s.source = { :git => 'https://github.com/allending/Kiwi.git', :tag => '1.1.1' }
s.source_files = 'Kiwi'
s.framework = 'SenTestingKit'
@jawwad
jawwad / gist:3151708
Created July 20, 2012 16:33
GG3 Connected Accounts API Design Spec
@interface GGConnectedAccountStore : NSObject
- (GGConnectedAccount *)accountWithType:(GGAccountType)accountType;
@property (nonatomic, strong) NSArray *accounts;
@end
@interface GGConnectedAccount : NSObject
- (id)initWithAccountType:(GGConnectedAccountType)type;
@property (nonatomic, assign) GGConnectedAccountType type;
@property (nonatomic, copy) NSString *username;