diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Info.plist | 6 | ||||
-rwxr-xr-x | src/index.rb | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/Info.plist b/src/Info.plist index b95b162..f94b2c9 100644 --- a/src/Info.plist +++ b/src/Info.plist @@ -3,11 +3,11 @@ <plist version="1.0"> <dict> <key>CFBundleIdentifier</key> - <string>gnumake</string> + <string>gnuautomake</string> <key>CFBundleName</key> - <string>GNU Make</string> + <string>GNU Automake</string> <key>DocSetPlatformFamily</key> - <string>make</string> + <string>automake</string> <key>isDashDocset</key> <true/> </dict> diff --git a/src/index.rb b/src/index.rb index c719fcc..a52e04c 100755 --- a/src/index.rb +++ b/src/index.rb @@ -9,7 +9,7 @@ INSERT_SQL = %Q[ INSERT INTO searchIndex(name, type, path) VALUES ('%s','%s','%s'); ] -PATTERN = %r[<title>GNU make: (.+)</title>] +PATTERN = %r[<title>GNU automake: (.+)</title>] def quote(s) s.gsub(/&/, '&').gsub(/'/, "\\'") |