This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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' => 'allen@allending.com', 'Luke Redpath' => 'luke@lukeredpath.co.uk' } | |
| 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' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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; |
NewerOlder