This port required creating a number of new ports, old versions of existing ports and other adjustments, so do all that while here too. Rails is a web-application framework for the MVC pattern that includes both a template engine, controller framework, and object-relational mapping package. Everything needed to develop web-apps that can run on CGI, FastCGI, and mod_ruby Being a full-stack framework means that all layers are built to work seamlessly together. That way you Don't Repeat Yourself (DRY) and you can use a single language from top to bottom. Everything from templates to control flow to business logic is written in Ruby - The language of love for industry heavy-weights. WWW: http://www.rubyonrails.org Submitted by: xmj (based on)
13 lines
555 B
Text
13 lines
555 B
Text
Active Resource
|
|
|
|
Active Resource attempts to provide a coherent wrapper object-relational
|
|
mapping for REST web services. It follows the same philosophy as
|
|
Active Record, in that one of its prime aims is to reduce the amount of
|
|
code needed to map to these resources. This is made possible by relying
|
|
on a number of code- and protocol-based conventions that make it easy for
|
|
Active Resource to infer complex relations and structures.
|
|
|
|
These conventions are outlined in detail in the documentation
|
|
for ActiveResource::Base.
|
|
|
|
WWW: http://www.rubyonrails.org
|