<p>
sproutcore - abbot
</p>
<pre>
by Charles Jolley and contributors
http://www.sproutcore.com
http://github.com/sproutit/sproutcore-abbot
</pre>
<h2>DESCRIPTION:</h2>
<p>
SproutCore is a platform for building native look-and-feel applications on
the web. This Ruby library includes a copy of the SproutCore JavaScript
framework as well as a Ruby-based build system called Abbot.
</p>
<p>
Abbot is a build system for creating static web content. You can supply
Abbot with a collection of JavaScript, HTML, CSS and image files and it
will combine the files into a bundle that are optimized for efficient,
cached deliver directly from your server or using a CDN.
</p>
<p>
Some of the benefits of using Abbot versus assembling your own content
include:
</p>
<pre>
* Easy maintenance. Organize your source content in a way that is useful for
you without impacting performance on loaded apps.
* Automatically versioned URLs. Serve content with long expiration dates
while Abbot handles the cache invalidation for you.
* Dependency management. Divide your code into frameworks; load 3rd party
libraries. Abbot will make sure everything loads in the correct order.
* Packing. Combines JavaScript and CSS into single files to minimize the
number of resources you download for each page.
</pre>
<p>
Although Abbot is intended primarily for building Web applications that use
the SproutCore JavaScript framework, you can also use it to efficiently
build any kind of static web content, even if SproutCore is not involved.
</p>
<p>
Abbot can be used both directly from the command line or as a ruby library.
</p>
<h2>USING ABBOT WITH SPROUTCORE:</h2>
<p>
This gem includes both the Abbot build tools and a copy of the SproutCore
JavaScript framework. You can use built-in commands to create, develop,
build, and deploy SproutCore-based applications.
</p>
<h2>KNOWN LIMITATIONS:</h2>
<ul>
<li>Currently does not support sites using relative-links. You must specify the
absolute path you expect built targets to be hosted as.
</li>
</ul>
<h2>SYNOPSIS:</h2>
<p>
To create a new project:
</p>
<pre>
sc-init my_app
</pre>
<p>
To test said project:
</p>
<pre>
cd my_app
sc-server
open http://localhost:4020/my_app (in web browser)
</pre>
<p>
Write code, refresh, debug. Once you are ready to deploy, build your static
output using:
</p>
<pre>
cd my_app
sc-build my_app -rc
</pre>
<p>
Copy the resulting files found in my_app/tmp/build to your server and you
are deployed!
</p>
<h2>REQUIREMENTS:</h2>
<ul>
<li>Ruby 1.8.6 or later. Ruby 1.9 is currently untested
</li>
<li>extlib 0.9.9 or later
</li>
<li>rack 0.9.1 or later
</li>
<li>erubis 2.6.2 or later
</li>
<li>json_pure 1.1.0 or later
</li>
</ul>
<h2>INSTALL:</h2>
<p>
sudo gem install sproutcore
</p>
<h2>LICENSE:</h2>
<p>
Copyright © 2009 Apple Inc. Portions copyright © 2006-2009 Sprout
Systems Inc. and contributors
</p>
<p>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
‘Software’), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge,
publish, distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to the
following conditions:
</p>
<p>
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
</p>
<p>
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
USE OR OTHER DEALINGS IN THE SOFTWARE.
</p>
<p>
SproutCore and the SproutCore logo are trademarks of Sprout Systems Inc.
</p>