Sha256: 281fcbb9c0a7feb03d37362c4335f92e908ee8d74ca757bbe60b37a495805e43

Contents?: true

Size: 1.13 KB

Versions: 12

Compression:

Stored size: 1.13 KB

Contents

= AppEngine Tools

AppEngine Tools gem provides dev_appserver.rb and appcfg.rb. The development
server runs your application on your local computer for testing your
application. The server simulates the App Engine datastore, services and
sandbox restrictions. A multipurpose tool called appcfg.rb handles all
command-line interaction with your application running on App Engine.

== Extending the Java Platform to JRuby

These tools work from standard Ruby, no need to install JRuby separately,
everything you need installs as gems. Your app has access to all the Java APIs.

== Rackup for app configuration

The required XML configuration files are generated from the 'config.ru' file.

 require 'appengine-rack'
 AppEngine::Rack.configure_app(          
     :application => "application-id",           
     :precompilation_enabled => true,
     :version => "1")
 run lambda { Rack::Response.new("Hello").finish }

== Bundler for Gem Management

Simply list the gems you require in the 'Gemfile'

 # Critical default settings:
 disable_system_gems
 disable_rubygems
 bundle_path ".gems/bundler_gems"

 # List gems to bundle here:
 gem "appengine-rack"

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
appengine-tools-0.0.17 README.rdoc
appengine-tools-0.0.16 README.rdoc
appengine-tools-0.0.15 README.rdoc
appengine-tools-0.0.15.pre README.rdoc
appengine-tools-0.0.14 README.rdoc
appengine-tools-0.0.13 README.rdoc
appengine-tools-0.0.12 README.rdoc
appengine-tools-0.0.11 README.rdoc
appengine-tools-0.0.10.1 README.rdoc
appengine-tools-0.0.9 README.rdoc
appengine-tools-0.0.8 README.rdoc
appengine-tools-0.0.8.pre README.rdoc