├── .gitignore ├── README.md ├── chapter_1 ├── hello_world.png └── hello_world.rb ├── chapter_10 └── AroundMe │ ├── AroundMe.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── AroundMe │ ├── AppDelegate.rb │ ├── AroundMe-Info.plist │ ├── AroundMe-Prefix.pch │ ├── en.lproj │ ├── InfoPlist.strings │ └── MainMenu.xib │ ├── gowalla_spot.rb │ ├── location_manager.rb │ ├── main.m │ └── rb_main.rb ├── chapter_11 └── EmbeddedMacRuby │ ├── EmbeddedMacRuby.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── EmbeddedMacRuby │ ├── EmbeddedMacRuby-Info.plist │ ├── EmbeddedMacRuby-Prefix.pch │ ├── EmbeddedMacRubyAppDelegate.h │ ├── EmbeddedMacRubyAppDelegate.m │ ├── en.lproj │ ├── Credits.rtf │ ├── InfoPlist.strings │ └── MainMenu.xib │ └── main.m ├── chapter_12 ├── MyApp │ ├── MyApp.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── MyApp │ │ ├── AppDelegate.rb │ │ ├── MyApp-Info.plist │ │ ├── MyApp-Prefix.pch │ │ ├── Sparkle.framework │ │ ├── Headers │ │ ├── Resources │ │ ├── Sparkle │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── SUAppcast.h │ │ │ │ ├── SUAppcastItem.h │ │ │ │ ├── SUUpdater.h │ │ │ │ ├── SUVersionComparisonProtocol.h │ │ │ │ └── Sparkle.h │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ ├── License.txt │ │ │ │ ├── SUModelTranslation.plist │ │ │ │ ├── SUStatus.nib │ │ │ │ ├── cs.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── da.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── de.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── en.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── es.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── fr.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── fr_CA.lproj │ │ │ │ ├── is.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── it.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ja.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── nl.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pl.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pt.lproj │ │ │ │ ├── pt_BR.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── relaunch │ │ │ │ ├── ru.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sv.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── tr.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ └── zh_TW.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ └── Sparkle │ │ │ └── Current │ │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ │ ├── main.m │ │ └── rb_main.rb ├── Spelling.bundle ├── Spelling.h ├── Spelling.m └── Spelling │ ├── Spelling.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── Spelling │ ├── Spelling-Prefix.pch │ ├── Spelling.h │ └── Spelling.m ├── chapter_13 └── PackagedGemexample │ ├── PackagedGemexample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── PackagedGemexample │ ├── AppDelegate.rb │ ├── PackagedGemexample-Info.plist │ ├── PackagedGemexample-Prefix.pch │ ├── en.lproj │ ├── InfoPlist.strings │ └── MainMenu.xib │ ├── main.m │ └── rb_main.rb ├── chapter_2 ├── demo-app.png ├── demo │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ ├── Info.plist │ ├── Tests │ │ ├── run_suite.rb │ │ └── stub_test.rb │ ├── alice.jpg │ ├── controller.rb │ ├── demo.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── main.m │ └── rb_main.rb └── demo_app.zip ├── chapter_5 ├── bindingsExample │ ├── bindingsExample.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── bindingsExample │ │ ├── AppDelegate.rb │ │ ├── bindingsExample-Info.plist │ │ ├── bindingsExample-Prefix.pch │ │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ │ ├── main.m │ │ ├── player.rb │ │ └── rb_main.rb ├── draw_rect_v1.rb ├── draw_rect_v2.rb ├── events │ └── events │ │ ├── events.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── events │ │ ├── AppDelegate.rb │ │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ │ ├── event_view.rb │ │ ├── events-Info.plist │ │ ├── events-Prefix.pch │ │ ├── main.m │ │ └── rb_main.rb ├── failed_draw_rect.rb └── image.rb ├── chapter_7 ├── CoreDataExample.zip ├── CoreDataExample │ ├── CoreDataExample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── mattetti.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── CoreDataExample.xcscheme │ │ │ └── xcschememanagement.plist │ └── CoreDataExample │ │ ├── AppDelegate.rb │ │ ├── CoreDataExample-Info.plist │ │ ├── CoreDataExample-Prefix.pch │ │ ├── CoreDataExample.xcdatamodeld │ │ ├── .xccurrentversion │ │ └── CoreDataExample.xcdatamodel │ │ │ ├── elements │ │ │ └── layout │ │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ │ ├── main.m │ │ └── rb_main.rb └── CoreDataExampleXcode3 │ ├── AppDelegate.rb │ ├── CoreDataExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── English.lproj │ ├── InfoPlist.strings │ └── MainMenu.xib │ ├── Info.plist │ ├── MacRubyApp.xcdatamodel │ ├── elements │ └── layout │ ├── main.m │ └── rb_main.rb ├── chapter_8 ├── closures.rb └── selectors.rb └── chapter_9 └── TwitterContactImporter ├── TwitterContactImporter.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── TwitterContactImporter ├── AppDelegate.rb ├── TwitterContactImporter-Info.plist ├── TwitterContactImporter-Prefix.pch ├── ab_address_book.rb ├── ab_extra.rb ├── ab_group.rb ├── ab_record.rb ├── core_ext.rb ├── en.lproj ├── InfoPlist.strings └── MainMenu.xib ├── main.m ├── rb_main.rb └── twitter_logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/README.md -------------------------------------------------------------------------------- /chapter_1/hello_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_1/hello_world.png -------------------------------------------------------------------------------- /chapter_1/hello_world.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_1/hello_world.rb -------------------------------------------------------------------------------- /chapter_10/AroundMe/AroundMe.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_10/AroundMe/AroundMe.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /chapter_10/AroundMe/AroundMe.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_10/AroundMe/AroundMe.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /chapter_10/AroundMe/AroundMe/AppDelegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_10/AroundMe/AroundMe/AppDelegate.rb -------------------------------------------------------------------------------- /chapter_10/AroundMe/AroundMe/AroundMe-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_10/AroundMe/AroundMe/AroundMe-Info.plist -------------------------------------------------------------------------------- /chapter_10/AroundMe/AroundMe/AroundMe-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_10/AroundMe/AroundMe/AroundMe-Prefix.pch -------------------------------------------------------------------------------- /chapter_10/AroundMe/AroundMe/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /chapter_10/AroundMe/AroundMe/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_10/AroundMe/AroundMe/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /chapter_10/AroundMe/AroundMe/gowalla_spot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_10/AroundMe/AroundMe/gowalla_spot.rb -------------------------------------------------------------------------------- /chapter_10/AroundMe/AroundMe/location_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_10/AroundMe/AroundMe/location_manager.rb -------------------------------------------------------------------------------- /chapter_10/AroundMe/AroundMe/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_10/AroundMe/AroundMe/main.m -------------------------------------------------------------------------------- /chapter_10/AroundMe/AroundMe/rb_main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_10/AroundMe/AroundMe/rb_main.rb -------------------------------------------------------------------------------- /chapter_11/EmbeddedMacRuby/EmbeddedMacRuby.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_11/EmbeddedMacRuby/EmbeddedMacRuby.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /chapter_11/EmbeddedMacRuby/EmbeddedMacRuby.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_11/EmbeddedMacRuby/EmbeddedMacRuby.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /chapter_11/EmbeddedMacRuby/EmbeddedMacRuby/EmbeddedMacRuby-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_11/EmbeddedMacRuby/EmbeddedMacRuby/EmbeddedMacRuby-Info.plist -------------------------------------------------------------------------------- /chapter_11/EmbeddedMacRuby/EmbeddedMacRuby/EmbeddedMacRuby-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_11/EmbeddedMacRuby/EmbeddedMacRuby/EmbeddedMacRuby-Prefix.pch -------------------------------------------------------------------------------- /chapter_11/EmbeddedMacRuby/EmbeddedMacRuby/EmbeddedMacRubyAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_11/EmbeddedMacRuby/EmbeddedMacRuby/EmbeddedMacRubyAppDelegate.h -------------------------------------------------------------------------------- /chapter_11/EmbeddedMacRuby/EmbeddedMacRuby/EmbeddedMacRubyAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_11/EmbeddedMacRuby/EmbeddedMacRuby/EmbeddedMacRubyAppDelegate.m -------------------------------------------------------------------------------- /chapter_11/EmbeddedMacRuby/EmbeddedMacRuby/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_11/EmbeddedMacRuby/EmbeddedMacRuby/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /chapter_11/EmbeddedMacRuby/EmbeddedMacRuby/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /chapter_11/EmbeddedMacRuby/EmbeddedMacRuby/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_11/EmbeddedMacRuby/EmbeddedMacRuby/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /chapter_11/EmbeddedMacRuby/EmbeddedMacRuby/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_11/EmbeddedMacRuby/EmbeddedMacRuby/main.m -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/AppDelegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/AppDelegate.rb -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/MyApp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/MyApp-Info.plist -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/MyApp-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/MyApp-Prefix.pch -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Headers/SUAppcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Headers/SUAppcast.h -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Headers/SUUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Headers/SUUpdater.h -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Headers/Sparkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Headers/Sparkle.h -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/License.txt -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/SUStatus.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/fr_CA.lproj: -------------------------------------------------------------------------------- 1 | fr.lproj -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pt.lproj: -------------------------------------------------------------------------------- 1 | pt_BR.lproj -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/relaunch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/relaunch -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/Sparkle.framework/Versions/A/Sparkle -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/main.m -------------------------------------------------------------------------------- /chapter_12/MyApp/MyApp/rb_main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/MyApp/MyApp/rb_main.rb -------------------------------------------------------------------------------- /chapter_12/Spelling.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/Spelling.bundle -------------------------------------------------------------------------------- /chapter_12/Spelling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/Spelling.h -------------------------------------------------------------------------------- /chapter_12/Spelling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/Spelling.m -------------------------------------------------------------------------------- /chapter_12/Spelling/Spelling.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/Spelling/Spelling.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /chapter_12/Spelling/Spelling.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/Spelling/Spelling.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /chapter_12/Spelling/Spelling/Spelling-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/Spelling/Spelling/Spelling-Prefix.pch -------------------------------------------------------------------------------- /chapter_12/Spelling/Spelling/Spelling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/Spelling/Spelling/Spelling.h -------------------------------------------------------------------------------- /chapter_12/Spelling/Spelling/Spelling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_12/Spelling/Spelling/Spelling.m -------------------------------------------------------------------------------- /chapter_13/PackagedGemexample/PackagedGemexample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_13/PackagedGemexample/PackagedGemexample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /chapter_13/PackagedGemexample/PackagedGemexample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_13/PackagedGemexample/PackagedGemexample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /chapter_13/PackagedGemexample/PackagedGemexample/AppDelegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_13/PackagedGemexample/PackagedGemexample/AppDelegate.rb -------------------------------------------------------------------------------- /chapter_13/PackagedGemexample/PackagedGemexample/PackagedGemexample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_13/PackagedGemexample/PackagedGemexample/PackagedGemexample-Info.plist -------------------------------------------------------------------------------- /chapter_13/PackagedGemexample/PackagedGemexample/PackagedGemexample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_13/PackagedGemexample/PackagedGemexample/PackagedGemexample-Prefix.pch -------------------------------------------------------------------------------- /chapter_13/PackagedGemexample/PackagedGemexample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /chapter_13/PackagedGemexample/PackagedGemexample/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_13/PackagedGemexample/PackagedGemexample/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /chapter_13/PackagedGemexample/PackagedGemexample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_13/PackagedGemexample/PackagedGemexample/main.m -------------------------------------------------------------------------------- /chapter_13/PackagedGemexample/PackagedGemexample/rb_main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_13/PackagedGemexample/PackagedGemexample/rb_main.rb -------------------------------------------------------------------------------- /chapter_2/demo-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_2/demo-app.png -------------------------------------------------------------------------------- /chapter_2/demo/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_2/demo/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /chapter_2/demo/English.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_2/demo/English.lproj/MainMenu.xib -------------------------------------------------------------------------------- /chapter_2/demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_2/demo/Info.plist -------------------------------------------------------------------------------- /chapter_2/demo/Tests/run_suite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_2/demo/Tests/run_suite.rb -------------------------------------------------------------------------------- /chapter_2/demo/Tests/stub_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_2/demo/Tests/stub_test.rb -------------------------------------------------------------------------------- /chapter_2/demo/alice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_2/demo/alice.jpg -------------------------------------------------------------------------------- /chapter_2/demo/controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_2/demo/controller.rb -------------------------------------------------------------------------------- /chapter_2/demo/demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_2/demo/demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /chapter_2/demo/demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_2/demo/demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /chapter_2/demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_2/demo/main.m -------------------------------------------------------------------------------- /chapter_2/demo/rb_main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_2/demo/rb_main.rb -------------------------------------------------------------------------------- /chapter_2/demo_app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_2/demo_app.zip -------------------------------------------------------------------------------- /chapter_5/bindingsExample/bindingsExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/bindingsExample/bindingsExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /chapter_5/bindingsExample/bindingsExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/bindingsExample/bindingsExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /chapter_5/bindingsExample/bindingsExample/AppDelegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/bindingsExample/bindingsExample/AppDelegate.rb -------------------------------------------------------------------------------- /chapter_5/bindingsExample/bindingsExample/bindingsExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/bindingsExample/bindingsExample/bindingsExample-Info.plist -------------------------------------------------------------------------------- /chapter_5/bindingsExample/bindingsExample/bindingsExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/bindingsExample/bindingsExample/bindingsExample-Prefix.pch -------------------------------------------------------------------------------- /chapter_5/bindingsExample/bindingsExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /chapter_5/bindingsExample/bindingsExample/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/bindingsExample/bindingsExample/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /chapter_5/bindingsExample/bindingsExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/bindingsExample/bindingsExample/main.m -------------------------------------------------------------------------------- /chapter_5/bindingsExample/bindingsExample/player.rb: -------------------------------------------------------------------------------- 1 | class Player 2 | attr_accessor :volume 3 | 4 | end -------------------------------------------------------------------------------- /chapter_5/bindingsExample/bindingsExample/rb_main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/bindingsExample/bindingsExample/rb_main.rb -------------------------------------------------------------------------------- /chapter_5/draw_rect_v1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/draw_rect_v1.rb -------------------------------------------------------------------------------- /chapter_5/draw_rect_v2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/draw_rect_v2.rb -------------------------------------------------------------------------------- /chapter_5/events/events/events.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/events/events/events.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /chapter_5/events/events/events.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/events/events/events.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /chapter_5/events/events/events/AppDelegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/events/events/events/AppDelegate.rb -------------------------------------------------------------------------------- /chapter_5/events/events/events/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /chapter_5/events/events/events/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/events/events/events/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /chapter_5/events/events/events/event_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/events/events/events/event_view.rb -------------------------------------------------------------------------------- /chapter_5/events/events/events/events-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/events/events/events/events-Info.plist -------------------------------------------------------------------------------- /chapter_5/events/events/events/events-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/events/events/events/events-Prefix.pch -------------------------------------------------------------------------------- /chapter_5/events/events/events/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/events/events/events/main.m -------------------------------------------------------------------------------- /chapter_5/events/events/events/rb_main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/events/events/events/rb_main.rb -------------------------------------------------------------------------------- /chapter_5/failed_draw_rect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/failed_draw_rect.rb -------------------------------------------------------------------------------- /chapter_5/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_5/image.rb -------------------------------------------------------------------------------- /chapter_7/CoreDataExample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExample.zip -------------------------------------------------------------------------------- /chapter_7/CoreDataExample/CoreDataExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExample/CoreDataExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /chapter_7/CoreDataExample/CoreDataExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExample/CoreDataExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /chapter_7/CoreDataExample/CoreDataExample.xcodeproj/xcuserdata/mattetti.xcuserdatad/xcschemes/CoreDataExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExample/CoreDataExample.xcodeproj/xcuserdata/mattetti.xcuserdatad/xcschemes/CoreDataExample.xcscheme -------------------------------------------------------------------------------- /chapter_7/CoreDataExample/CoreDataExample.xcodeproj/xcuserdata/mattetti.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExample/CoreDataExample.xcodeproj/xcuserdata/mattetti.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /chapter_7/CoreDataExample/CoreDataExample/AppDelegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExample/CoreDataExample/AppDelegate.rb -------------------------------------------------------------------------------- /chapter_7/CoreDataExample/CoreDataExample/CoreDataExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExample/CoreDataExample/CoreDataExample-Info.plist -------------------------------------------------------------------------------- /chapter_7/CoreDataExample/CoreDataExample/CoreDataExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExample/CoreDataExample/CoreDataExample-Prefix.pch -------------------------------------------------------------------------------- /chapter_7/CoreDataExample/CoreDataExample/CoreDataExample.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExample/CoreDataExample/CoreDataExample.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /chapter_7/CoreDataExample/CoreDataExample/CoreDataExample.xcdatamodeld/CoreDataExample.xcdatamodel/elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExample/CoreDataExample/CoreDataExample.xcdatamodeld/CoreDataExample.xcdatamodel/elements -------------------------------------------------------------------------------- /chapter_7/CoreDataExample/CoreDataExample/CoreDataExample.xcdatamodeld/CoreDataExample.xcdatamodel/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExample/CoreDataExample/CoreDataExample.xcdatamodeld/CoreDataExample.xcdatamodel/layout -------------------------------------------------------------------------------- /chapter_7/CoreDataExample/CoreDataExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /chapter_7/CoreDataExample/CoreDataExample/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExample/CoreDataExample/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /chapter_7/CoreDataExample/CoreDataExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExample/CoreDataExample/main.m -------------------------------------------------------------------------------- /chapter_7/CoreDataExample/CoreDataExample/rb_main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExample/CoreDataExample/rb_main.rb -------------------------------------------------------------------------------- /chapter_7/CoreDataExampleXcode3/AppDelegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExampleXcode3/AppDelegate.rb -------------------------------------------------------------------------------- /chapter_7/CoreDataExampleXcode3/CoreDataExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExampleXcode3/CoreDataExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /chapter_7/CoreDataExampleXcode3/CoreDataExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExampleXcode3/CoreDataExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /chapter_7/CoreDataExampleXcode3/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExampleXcode3/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /chapter_7/CoreDataExampleXcode3/English.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExampleXcode3/English.lproj/MainMenu.xib -------------------------------------------------------------------------------- /chapter_7/CoreDataExampleXcode3/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExampleXcode3/Info.plist -------------------------------------------------------------------------------- /chapter_7/CoreDataExampleXcode3/MacRubyApp.xcdatamodel/elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExampleXcode3/MacRubyApp.xcdatamodel/elements -------------------------------------------------------------------------------- /chapter_7/CoreDataExampleXcode3/MacRubyApp.xcdatamodel/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExampleXcode3/MacRubyApp.xcdatamodel/layout -------------------------------------------------------------------------------- /chapter_7/CoreDataExampleXcode3/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExampleXcode3/main.m -------------------------------------------------------------------------------- /chapter_7/CoreDataExampleXcode3/rb_main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_7/CoreDataExampleXcode3/rb_main.rb -------------------------------------------------------------------------------- /chapter_8/closures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_8/closures.rb -------------------------------------------------------------------------------- /chapter_8/selectors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_8/selectors.rb -------------------------------------------------------------------------------- /chapter_9/TwitterContactImporter/TwitterContactImporter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_9/TwitterContactImporter/TwitterContactImporter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /chapter_9/TwitterContactImporter/TwitterContactImporter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_9/TwitterContactImporter/TwitterContactImporter.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /chapter_9/TwitterContactImporter/TwitterContactImporter/AppDelegate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_9/TwitterContactImporter/TwitterContactImporter/AppDelegate.rb -------------------------------------------------------------------------------- /chapter_9/TwitterContactImporter/TwitterContactImporter/TwitterContactImporter-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_9/TwitterContactImporter/TwitterContactImporter/TwitterContactImporter-Info.plist -------------------------------------------------------------------------------- /chapter_9/TwitterContactImporter/TwitterContactImporter/TwitterContactImporter-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_9/TwitterContactImporter/TwitterContactImporter/TwitterContactImporter-Prefix.pch -------------------------------------------------------------------------------- /chapter_9/TwitterContactImporter/TwitterContactImporter/ab_address_book.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_9/TwitterContactImporter/TwitterContactImporter/ab_address_book.rb -------------------------------------------------------------------------------- /chapter_9/TwitterContactImporter/TwitterContactImporter/ab_extra.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_9/TwitterContactImporter/TwitterContactImporter/ab_extra.rb -------------------------------------------------------------------------------- /chapter_9/TwitterContactImporter/TwitterContactImporter/ab_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_9/TwitterContactImporter/TwitterContactImporter/ab_group.rb -------------------------------------------------------------------------------- /chapter_9/TwitterContactImporter/TwitterContactImporter/ab_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_9/TwitterContactImporter/TwitterContactImporter/ab_record.rb -------------------------------------------------------------------------------- /chapter_9/TwitterContactImporter/TwitterContactImporter/core_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_9/TwitterContactImporter/TwitterContactImporter/core_ext.rb -------------------------------------------------------------------------------- /chapter_9/TwitterContactImporter/TwitterContactImporter/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /chapter_9/TwitterContactImporter/TwitterContactImporter/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_9/TwitterContactImporter/TwitterContactImporter/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /chapter_9/TwitterContactImporter/TwitterContactImporter/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_9/TwitterContactImporter/TwitterContactImporter/main.m -------------------------------------------------------------------------------- /chapter_9/TwitterContactImporter/TwitterContactImporter/rb_main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_9/TwitterContactImporter/TwitterContactImporter/rb_main.rb -------------------------------------------------------------------------------- /chapter_9/TwitterContactImporter/TwitterContactImporter/twitter_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/MacRuby--The-Definitive-Guide/HEAD/chapter_9/TwitterContactImporter/TwitterContactImporter/twitter_logo.png --------------------------------------------------------------------------------