bjc / sproutcore-abbot forked from sproutit/sproutcore-abbot

SproutCore 1.0 Build Tools

This URL has Read+Write access

sproutit (author)
Fri Jul 10 17:31:57 -0700 2009
commit  165f36e4a499c5fb600949691f59a2848f70d07c
tree    2f97ea76be517540da4fa8665eaa17b5c95ff99f
parent  33503e4e26b695305bb5c7b901a0c52213297efa
name age message
file .gitignore Loading commit data...
file .gitmodules Fri Apr 03 20:26:22 -0700 2009 Added sproutcore as submodule [sproutit]
file Buildfile
file History.txt Sat Apr 04 17:18:53 -0700 2009 Cleanup history and readme [sproutit]
file README.txt Sat Apr 04 17:18:53 -0700 2009 Cleanup history and readme [sproutit]
file Rakefile Tue Apr 07 20:58:47 -0700 2009 Regenerate gemspec [sproutit]
file Todo.txt Fri Jan 16 12:31:59 -0800 2009 Update sc-manifest tool to be able to filter th... [sproutit]
directory bin/ Sat Apr 04 16:52:28 -0700 2009 Add copyright header to top of all files [sproutit]
directory buildtasks/ Sun Mar 29 16:11:59 -0700 2009 Fix bug in rack builder that would not rebuild ... [sproutit]
directory frameworks/
directory gen/ Sun Apr 05 10:21:48 -0700 2009 Update template to use latest API [sproutit]
directory lib/
directory spec/ Sat Apr 04 16:52:28 -0700 2009 Add copyright header to top of all files [sproutit]
file sproutcore-abbot.gemspec
directory vendor/
README.txt
sproutcore - abbot
    by Charles Jolley and contributors
    http://www.sproutcore.com
    http://github.com/sproutit/sproutcore-abbot

== DESCRIPTION:

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.

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.

Some of the benefits of using Abbot versus assembling your own content 
include:

 * 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.
  
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.

Abbot can be used both directly from the command line or as a ruby library. 
  
== USING ABBOT WITH SPROUTCORE:

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.

== KNOWN LIMITATIONS:

* Currently does not support sites using relative-links.  You must specify
  the absolute path you expect built targets to be hosted as.  

== SYNOPSIS:

To create a new project:

  sc-init my_app
  
To test said project:

  cd my_app
  sc-server
  open http://localhost:4020/my_app (in web browser)
  
Write code, refresh, debug.  Once you are ready to deploy, build your static
output using:

  cd my_app
  sc-build my_app -rc
  
Copy the resulting files found in my_app/tmp/build to your server and you are
deployed!

== REQUIREMENTS:

* Ruby 1.8.6 or later.  Ruby 1.9 is currently untested
* extlib 0.9.9 or later
* rack 0.9.1 or later
* erubis 2.6.2 or later
* json_pure 1.1.0 or later

== INSTALL:

sudo gem install sproutcore

== LICENSE:

Copyright (c) 2009 Apple, Inc.  
Portions copyright (c) 2006-2009 Sprout Systems, Inc. and contributors

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:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

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.