diff --git a/Rakefile b/Rakefile index f251169aa..4f0a3da62 100644 --- a/Rakefile +++ b/Rakefile @@ -31,7 +31,6 @@ $TOOLS_DOWNLOAD_INSTALLER = File.join($TOOLS_DOWNLOAD, 'install-tools' $STARTER_README = File.join('Tools', 'READMEs', 'STARTER-README') $STARTER_DOWNLOAD = File.join($BUILD_DIR, 'Cappuccino', 'Starter') $STARTER_DOWNLOAD_APPLICATION = File.join($STARTER_DOWNLOAD, 'NewApplication') -$STARTER_DOWNLOAD_NIBAPPLICATION = File.join($STARTER_DOWNLOAD, 'NibApplication') $STARTER_DOWNLOAD_README = File.join($STARTER_DOWNLOAD, 'README') task :downloads => [:starter_download, :tools_download] @@ -60,7 +59,7 @@ end task :tools_download => [$TOOLS_DOWNLOAD_ENV, $TOOLS_DOWNLOAD_EDITORS, $TOOLS_DOWNLOAD_README, $TOOLS_DOWNLOAD_INSTALLER, :objj_gem] -task :starter_download => [$STARTER_DOWNLOAD_NIBAPPLICATION, $STARTER_DOWNLOAD_APPLICATION, $STARTER_DOWNLOAD_README] +task :starter_download => [$STARTER_DOWNLOAD_APPLICATION, $STARTER_DOWNLOAD_README] task :deploy => [:downloads, :docs] do #copy the docs into the starter pack @@ -89,15 +88,8 @@ file_d $STARTER_DOWNLOAD_APPLICATION => [$TOOLS_DOWNLOAD_ENV] do mkdir_p($STARTER_DOWNLOAD) system %{capp gen #{$STARTER_DOWNLOAD_APPLICATION} -t Application --noconfig } -end - -file_d $STARTER_DOWNLOAD_NIBAPPLICATION => [$TOOLS_DOWNLOAD_ENV] do - - ENV['PATH'] = "#{File.join($TOOLS_DOWNLOAD_ENV, 'bin')}:#{ENV['PATH']}" - - rm_rf($STARTER_DOWNLOAD_NIBAPPLICATION) - mkdir_p($STARTER_DOWNLOAD) - system %{capp gen #{$STARTER_DOWNLOAD_NIBAPPLICATION} -t NibApplication --noconfig } + # No tools means no objective-j gem + rm(File.join($STARTER_DOWNLOAD_APPLICATION, 'Rakefile')) end diff --git a/Tools/READMEs/STARTER-README b/Tools/READMEs/STARTER-README index 034063a99..f747a995f 100644 --- a/Tools/READMEs/STARTER-README +++ b/Tools/READMEs/STARTER-README @@ -4,11 +4,10 @@ Included you should find the following: 1. Documentation 2. NewApplication -3. NibApplication 4. README NewApplication is a stand alone Cappuccino application that you can use as a template to start building your own apps. To get started, just open up NewApplication/index.html in your favorite web browser. A great place to go from there is to read the "Downloading and Getting Started" tutorial found at http://cappuccino.org/learn/tutorials/starter-tutorial.php. This will walk you through these initial steps as well as getting you to do a little coding. If you want to debug your application, try running it with index-debug.html instead, which should make it easier. -NibApplication is a stand alone Cappuccino application that uses .cib files for its interface. You will find two files of interest in the Resources folder: MainMenu.xib and MainMenu.cib. To edit the interface, open MainMenu.xib in Interface Builder. When you are done, run the nib2cib command on MainMenu.xib to generate a new MainMenu.cib file, and refresh your application. - You can build your entire application right from either of these sample projects, but if you want to dig a little deeper, you can also download the Tools package found at http://cappuccino.org/download/. This will set you up with some great additions like syntax modules for certain text editors and build tools to get extra performance. + +NOTE: If you'd like to make a nib-based application, you will need to download the Tools package from cappuccino.org/download