Skip to content

Commit

Permalink
RC3
Browse files Browse the repository at this point in the history
  • Loading branch information
atg committed Nov 30, 2010
1 parent acaf363 commit 2926a28
Show file tree
Hide file tree
Showing 5 changed files with 3,491 additions and 1,415 deletions.
6 changes: 4 additions & 2 deletions IGKScraper.m
Expand Up @@ -357,7 +357,7 @@ - (NSManagedObject *)extractPath:(NSString *)extractPath relativeExtractPath:(NS
if (parentItemType == ParentItemType_ObjCClass)
{
//Find the superclass
NSString *superclassRegex = @"Inherits from.+?>([A-Za-z0-9_$]+)<";
NSString *superclassRegex = @"Inherits from.+?>([^<]+)<";

NSArray *superclassCaptureSet = [contents captureComponentsMatchedByRegex:superclassRegex];
if ([superclassCaptureSet count] >= 2)
Expand Down Expand Up @@ -446,7 +446,9 @@ - (NSManagedObject *)extractPath:(NSString *)extractPath relativeExtractPath:(NS
[obj setValue:[NSNumber numberWithUnsignedInteger:contentsLength] forKey:@"contentsLength"];

if ([superclass length])
{
[obj setValue:superclass forKey:@"superclassName"];
}

if ([availability length])
[obj setValue:availability forKey:@"availability"];
Expand Down Expand Up @@ -1125,7 +1127,7 @@ - (void)scrapeMethodChildren:(NSArray *)children index:(NSUInteger)index managed

//signature (other items)
// <pre class="declaration">
else if (([nName isEqual:@"pre"] || [nName isEqual:@"p"]) && [nClass containsObject:@"declaration"])
else if (([nName isEqual:@"pre"] || [nName isEqual:@"p"] || [nName isEqual:@"div"]) && [nClass containsObject:@"declaration"])
{
NSMutableString *prototype = [[NSMutableString alloc] init];
[prototype appendString:[n commentlessStringValue]];
Expand Down
4 changes: 2 additions & 2 deletions Ingredients-Info.plist
Expand Up @@ -19,9 +19,9 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0rc2</string>
<string>1.0rc3</string>
<key>CFBundleShortVersionString</key>
<string>1.0rc2</string>
<string>1.0rc3</string>
<key>LSMinimumSystemVersion</key>
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
<key>NSMainNibFile</key>
Expand Down
1 change: 0 additions & 1 deletion Ingredients.xcodeproj/project.pbxproj
Expand Up @@ -873,7 +873,6 @@
isa = PBXProject;
buildConfigurationList = 26FC0A880875C7B200E6366F /* Build configuration list for PBXProject "Ingredients" */;
compatibilityVersion = "Xcode 3.1";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
English,
Expand Down

0 comments on commit 2926a28

Please sign in to comment.