Skip to content

Instantly share code, notes, and snippets.

@abronte
Created January 21, 2013 19:57
Show Gist options
  • Select an option

  • Save abronte/4588785 to your computer and use it in GitHub Desktop.

Select an option

Save abronte/4588785 to your computer and use it in GitHub Desktop.
+ (void)bundles:(ForgeTask*)task {
NSArray *bundles = [NSBundle allBundles];
NSEnumerator *e = [bundles objectEnumerator];
id object;
[ForgeLog i:@"Current bundles:"];
while (object = [e nextObject]) {
[ForgeLog i:[object bundleIdentifier]];
[ForgeLog i:[object bundlePath]];
[ForgeLog i:[object bundleURL]];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment