Embed presentation
Download to read offline













![status
header
body
class MyApp
def call(env)
[
200,
{‘Content-Type’ => ‘text/plain’},
[“you requested “ + env[‘PATH_INFO’]]
]](https://image.slidesharecdn.com/aviandriminirails-131114052744-phpapp01/85/Mini-Rails-Framework-14-320.jpg)











This document provides an overview of the Ruby on Rails framework. It introduces Rails and its main components, which include ActiveRecord for database access, ActionPack for handling requests and routing, ActionMailer for email, Railties for gluing the framework together, and ActiveSupport for extensions. It then discusses ActiveRecord patterns and the MVC architecture. Sections provide code examples for a basic controller and routing. The document recommends following Ruby conventions and lists the main Rails gems. It concludes by thanking the reader and providing a link to a mini-Rails project on GitHub.













![status
header
body
class MyApp
def call(env)
[
200,
{‘Content-Type’ => ‘text/plain’},
[“you requested “ + env[‘PATH_INFO’]]
]](https://image.slidesharecdn.com/aviandriminirails-131114052744-phpapp01/85/Mini-Rails-Framework-14-320.jpg)









