Ruby is an object-oriented programming language created in 1993, while Rails is a web application framework built using Ruby. The document provides an overview of Ruby and Rails, including what Rails is and its key advantages such as convention over configuration, don't repeat yourself (DRY) principles, and object-relational mapping (ORM). It also demonstrates creating a sample Rails application and using the Spree e-commerce gem.
This document provides an introduction and overview of Ruby and Ruby on Rails (RoR). It discusses that Ruby is an object-oriented programming language created in 1993, and RoR is a web application framework built on Ruby. It outlines the structure of a basic RoR application, including models, views, controllers, and databases. It also provides examples of generating scaffolds and basic RoR commands.
Introduction to Rails - presented by Arman Ortegaarman o
?
This document provides an introduction to Ruby on Rails presented by Arman Ortega. It outlines what will be covered including an overview of Ruby and Rails, the concept of convention over configuration in Rails, and performing CRUD (create, read, update, delete) operations. It then demonstrates creating a sample blog application in Rails and provides links for additional learning resources.
This document provides a fast-paced introduction to Ruby, Rails, and additional technologies. It begins with an overview of Ruby basics, syntax, and uses beyond scripts. It then covers Rails fundamentals including MVC architecture, scaffolding, models, views, controllers, and routes. Additional topics discussed include gems, Git, and deploying to Heroku. The document concludes by outlining a sample project to build a marketplace for buying and selling robot spare parts.
Fast Web Applications Development with Ruby on Rails on OracleRaimonds Simanovskis
?
This document provides an overview of Ruby on Rails and how it can be used to develop fast web applications with an Oracle database backend. It discusses key Rails concepts like MVC architecture and Active Record. It also demonstrates how to connect Rails to Oracle using gems like ruby-oci8, activerecord-oracle_enhanced-adapter, and ruby-plsql to access Oracle data types, stored procedures, and full-text search capabilities. The document concludes with deployment options and pointers to related sessions.
This document provides an overview and introduction to Ruby on Rails. It begins with an agenda and introduction to the speaker. It then provides a brief introduction to Rails, including what industries use it, examples of popular websites built with Rails, and an explanation of its model-view-controller architecture and RESTful design philosophy. The document continues with sections on auditing Rails applications, identifying common vulnerabilities like mass assignment and cross-site scripting, and recommendations for removing vulnerabilities.
This talk covers a successful utilization of Rails Engines to share features that cut across the layers of MVC in different Rails 3 projects. Rails Engines thus provide the best of both worlds: improved productivity by reusing MVC code (including assets like Javascript, CSS, and Images) and better flexibility by allowing different applications to customize behavior as needed without reliance on application-dependent conditionals. Rails Engine patterns will be provided to guide developers on how to leverage Rails Engines' reusability and flexibility without sacrificing maintainability.
The document discusses migrating from Rails 2 to Rails 3. Key changes include a new router, explicit dependency management with Bundler, assets pipeline, jQuery as default JavaScript library, reversible migrations, faster development mode, new routing engine, and automatic query explains. The migration process involves installing Rails 3, running an upgrade checker, backing up the app, generating a new Rails 3 app in the same directory, and installing dependencies with Bundler.
This document provides an overview of the Laravel framework, including:
- A brief history of Laravel and its origins from Ruby on Rails
- Instructions for installing Laravel and understanding its directory structure
- Explanations of core Laravel features like routing, Blade templating, Eloquent ORM, validation, and the service container
- Additional resources are provided for further exploring topics like middleware, collections, and customizing Laravel's functionality.
Creating a modern web application using Symfony API Platform, ReactJS and Red...Jesus Manuel Olivas
?
The API Platform framework is a set of tools to help you building API-first projects. The API project Platform is built on top of the Symfony framework, it means you can reuse all your Drupal 8 and Symfony skills and benefit of the incredible amount of Symfony documentation and community bundles.
During this session, you will learn how to use the API Platform project to create a modern web application using Symfony, Doctrine, ReactJS, Redux, Redux-Saga, Ant Design and DVA.
Turbocharge your web development with Rails
Vagmi Mudumbai presented an overview of Ruby on Rails web development. The presentation covered installing Ruby and Rails, the MVC framework, generating models and migrations, querying the database, controllers and routes, views and forms. Attendees learned the basics of building a Rails application including setting up models, controllers and views to create, read, update and delete data through a RESTful interface.
This document summarizes a presentation about integrating JavaScript with Laravel. The speaker will explore building a game using Laravel and demonstrate how to:
1) Prepare Laravel by installing packages, generating database migrations and models, and setting up routes and controllers.
2) Add jQuery and custom scripts to views using Blade templating.
3) Pass PHP data to JavaScript in templates, either directly or using the laracasts/utilities package.
4) Make AJAX calls from JavaScript to Laravel controllers to retrieve and update data, including using named routes from the laravel-js-routes package.
ºÝºÝߣs from a presentation given at Laravel Chicago on November 18, 2014. Goes over the basics of building a REST API using the Laravel framework as well as some handy tips and tools.
The document discusses various options for implementing distributed processing in Ruby on Rails applications. It describes libraries like DRb, BackgroundRB, Starfish, reliable-message, and AP4R that can be used to distribute tasks across multiple servers. As an example, it outlines how the Working With Rails site used AP4R to distribute the fetching and parsing of third-party RSS feeds across multiple machines to improve performance. It also discusses some challenges of distributed processing and when it makes sense to implement.
This document discusses the Laravel PHP framework and provides an overview of its key characteristics and features. It highlights aspects like Eloquent ORM, routing, MVC architecture, Blade templating, easy creation of RESTful APIs, and Artisan CLI. It also mentions features like authentication, forms, validation, caching, testing, and more. The document concludes with an example tutorial for building a RESTful API in Laravel involving models, controllers and JSON responses.
AngularJS with Slim PHP Micro FrameworkBackand Cohen
?
AngularJS is a popular front-end framework that can be used with many server-side technologies. In many AngularJS web applications, each web page is really a single-page application (SPA), so the role of the server-side is really an API consisting of a set of web services to interact with the server-side database
This document provides guidelines for coding in Ruby on Rails. It covers naming conventions and formatting for Ruby code, as well as best practices for Rails configuration, routing, controllers, models, migrations, views, and logging. Useful gems are also listed, including RSpec for testing, Devise for authentication, Sidekiq for background jobs, and FriendlyId for permalinks.
Rails 4.0 introduced the following changes:
1. Thread safety is enabled by default.
2. Strong Parameters were added for mass assignment protection.
3. Turbolinks was added to speed up page loads by preventing full page reloads.
4. Russian Doll Caching was introduced to maximize cache hits by nesting fragment caches.
Some features were extracted to gems including Action and Page Caching, Active Resource, and AR Observer. The deprecation policy removes deprecated features in future versions. Strong Parameters replace attr_accessible. Turbolinks improves performance. Russian Doll Caching optimizes caching.
This document discusses building REST APIs with Laravel 5. It covers topics like using REST instead of SOAP, authentication with basic authentication and middleware, response formats, controller hierarchy, repositories, data transformers, error handling, and an internal dispatcher for making internal API requests. The goal is to provide best practices and patterns for building robust and well-structured REST APIs with Laravel.
RESTful API Design & Implementation with CodeIgniter PHP FrameworkBo-Yi Wu
?
This document provides an overview and summary of Bo-Yi Wu's presentation on implementing a RESTful API with CodeIgniter. The presentation covers RESTful API basics like HTTP methods, JSON response format, API design best practices, and using the CodeIgniter REST Server and REST Client libraries to implement and test APIs within the CodeIgniter framework. Examples are provided for creating, updating, deleting and reading data via API requests and responses. Folder structure and routing configurations for organizing API controllers are also discussed.
This document provides instructions for building a Rails API and discusses related topics. It recommends using Rails 3.1 and Ruby 1.9.2 to build the API. It provides steps to generate a MessagesController to handle API requests for messages. It discusses testing the API with curl and rspec tests. It also covers building a namespaced and versioned API, authentication, caching responses, hosting on DotCloud, and running background jobs with Delayed Job.
Creating REST Applications with the Slim Micro-Framework by Vikram Vaswanivvaswani
?
Explains how to use the Slim PHP micro-framework to quickly deploy a REST API. Includes sample code to implement common API requirements, such as authentication, request logging and multi-format support.
This document provides an introduction and overview of Ruby on Rails, including who uses it, example applications built with it, its MVC framework structure, and a step-by-step guide to building a basic "Hello World" Ruby on Rails application.
Ruby on Rails, often simply referred to as Rails, is an open-source web application framework written in Ruby. It follows the Model-View-Controller (MVC) architectural pattern, which separates an application into three interconnected components to promote code Ruby Rails Web Development organization and maintainability. Ruby on Rails has gained popularity for its focus on developer productivity and its convention-over-configuration philosophy, which significantly reduces the need for boilerplate code and configuration.
This document provides an overview and introduction to Ruby on Rails. It begins with an agenda and introduction to the speaker. It then provides a brief introduction to Rails, including what industries use it, examples of popular websites built with Rails, and an explanation of its model-view-controller architecture and RESTful design philosophy. The document continues with sections on auditing Rails applications, identifying common vulnerabilities like mass assignment and cross-site scripting, and recommendations for removing vulnerabilities.
This talk covers a successful utilization of Rails Engines to share features that cut across the layers of MVC in different Rails 3 projects. Rails Engines thus provide the best of both worlds: improved productivity by reusing MVC code (including assets like Javascript, CSS, and Images) and better flexibility by allowing different applications to customize behavior as needed without reliance on application-dependent conditionals. Rails Engine patterns will be provided to guide developers on how to leverage Rails Engines' reusability and flexibility without sacrificing maintainability.
The document discusses migrating from Rails 2 to Rails 3. Key changes include a new router, explicit dependency management with Bundler, assets pipeline, jQuery as default JavaScript library, reversible migrations, faster development mode, new routing engine, and automatic query explains. The migration process involves installing Rails 3, running an upgrade checker, backing up the app, generating a new Rails 3 app in the same directory, and installing dependencies with Bundler.
This document provides an overview of the Laravel framework, including:
- A brief history of Laravel and its origins from Ruby on Rails
- Instructions for installing Laravel and understanding its directory structure
- Explanations of core Laravel features like routing, Blade templating, Eloquent ORM, validation, and the service container
- Additional resources are provided for further exploring topics like middleware, collections, and customizing Laravel's functionality.
Creating a modern web application using Symfony API Platform, ReactJS and Red...Jesus Manuel Olivas
?
The API Platform framework is a set of tools to help you building API-first projects. The API project Platform is built on top of the Symfony framework, it means you can reuse all your Drupal 8 and Symfony skills and benefit of the incredible amount of Symfony documentation and community bundles.
During this session, you will learn how to use the API Platform project to create a modern web application using Symfony, Doctrine, ReactJS, Redux, Redux-Saga, Ant Design and DVA.
Turbocharge your web development with Rails
Vagmi Mudumbai presented an overview of Ruby on Rails web development. The presentation covered installing Ruby and Rails, the MVC framework, generating models and migrations, querying the database, controllers and routes, views and forms. Attendees learned the basics of building a Rails application including setting up models, controllers and views to create, read, update and delete data through a RESTful interface.
This document summarizes a presentation about integrating JavaScript with Laravel. The speaker will explore building a game using Laravel and demonstrate how to:
1) Prepare Laravel by installing packages, generating database migrations and models, and setting up routes and controllers.
2) Add jQuery and custom scripts to views using Blade templating.
3) Pass PHP data to JavaScript in templates, either directly or using the laracasts/utilities package.
4) Make AJAX calls from JavaScript to Laravel controllers to retrieve and update data, including using named routes from the laravel-js-routes package.
ºÝºÝߣs from a presentation given at Laravel Chicago on November 18, 2014. Goes over the basics of building a REST API using the Laravel framework as well as some handy tips and tools.
The document discusses various options for implementing distributed processing in Ruby on Rails applications. It describes libraries like DRb, BackgroundRB, Starfish, reliable-message, and AP4R that can be used to distribute tasks across multiple servers. As an example, it outlines how the Working With Rails site used AP4R to distribute the fetching and parsing of third-party RSS feeds across multiple machines to improve performance. It also discusses some challenges of distributed processing and when it makes sense to implement.
This document discusses the Laravel PHP framework and provides an overview of its key characteristics and features. It highlights aspects like Eloquent ORM, routing, MVC architecture, Blade templating, easy creation of RESTful APIs, and Artisan CLI. It also mentions features like authentication, forms, validation, caching, testing, and more. The document concludes with an example tutorial for building a RESTful API in Laravel involving models, controllers and JSON responses.
AngularJS with Slim PHP Micro FrameworkBackand Cohen
?
AngularJS is a popular front-end framework that can be used with many server-side technologies. In many AngularJS web applications, each web page is really a single-page application (SPA), so the role of the server-side is really an API consisting of a set of web services to interact with the server-side database
This document provides guidelines for coding in Ruby on Rails. It covers naming conventions and formatting for Ruby code, as well as best practices for Rails configuration, routing, controllers, models, migrations, views, and logging. Useful gems are also listed, including RSpec for testing, Devise for authentication, Sidekiq for background jobs, and FriendlyId for permalinks.
Rails 4.0 introduced the following changes:
1. Thread safety is enabled by default.
2. Strong Parameters were added for mass assignment protection.
3. Turbolinks was added to speed up page loads by preventing full page reloads.
4. Russian Doll Caching was introduced to maximize cache hits by nesting fragment caches.
Some features were extracted to gems including Action and Page Caching, Active Resource, and AR Observer. The deprecation policy removes deprecated features in future versions. Strong Parameters replace attr_accessible. Turbolinks improves performance. Russian Doll Caching optimizes caching.
This document discusses building REST APIs with Laravel 5. It covers topics like using REST instead of SOAP, authentication with basic authentication and middleware, response formats, controller hierarchy, repositories, data transformers, error handling, and an internal dispatcher for making internal API requests. The goal is to provide best practices and patterns for building robust and well-structured REST APIs with Laravel.
RESTful API Design & Implementation with CodeIgniter PHP FrameworkBo-Yi Wu
?
This document provides an overview and summary of Bo-Yi Wu's presentation on implementing a RESTful API with CodeIgniter. The presentation covers RESTful API basics like HTTP methods, JSON response format, API design best practices, and using the CodeIgniter REST Server and REST Client libraries to implement and test APIs within the CodeIgniter framework. Examples are provided for creating, updating, deleting and reading data via API requests and responses. Folder structure and routing configurations for organizing API controllers are also discussed.
This document provides instructions for building a Rails API and discusses related topics. It recommends using Rails 3.1 and Ruby 1.9.2 to build the API. It provides steps to generate a MessagesController to handle API requests for messages. It discusses testing the API with curl and rspec tests. It also covers building a namespaced and versioned API, authentication, caching responses, hosting on DotCloud, and running background jobs with Delayed Job.
Creating REST Applications with the Slim Micro-Framework by Vikram Vaswanivvaswani
?
Explains how to use the Slim PHP micro-framework to quickly deploy a REST API. Includes sample code to implement common API requirements, such as authentication, request logging and multi-format support.
This document provides an introduction and overview of Ruby on Rails, including who uses it, example applications built with it, its MVC framework structure, and a step-by-step guide to building a basic "Hello World" Ruby on Rails application.
Ruby on Rails, often simply referred to as Rails, is an open-source web application framework written in Ruby. It follows the Model-View-Controller (MVC) architectural pattern, which separates an application into three interconnected components to promote code Ruby Rails Web Development organization and maintainability. Ruby on Rails has gained popularity for its focus on developer productivity and its convention-over-configuration philosophy, which significantly reduces the need for boilerplate code and configuration.
This document provides an overview of Ruby on Rails, a web application framework written in Ruby. It discusses what Ruby and Rails are, the key strengths of Rails like productivity and convention over configuration. It then demonstrates how to build a basic Rails application, including generating models and controllers, scaffolding, and adding relationships between models. The document aims to introduce developers to Ruby on Rails and demonstrate its capabilities.
This document provides an overview of Ruby on Rails, including what it is, how to install it, how to create a sample Rails application, and recommended resources for learning more. Ruby on Rails is an open source web application framework written in Ruby. It uses a model-view-controller pattern and convention over configuration approach to provide a full stack framework for developing database-backed web applications rapidly.
The document provides an overview of Ruby on Rails including: why developers may be interested in Rails, key concepts like MVC architecture and conventions over configuration, how models, views and controllers work, database persistence with ActiveRecord, and common Rails tools like migrations, validations and associations. It also briefly discusses Ruby's creator Yukihiro Matsumoto, popular Rails applications, and resources for learning more.
This document provides an introduction and overview of Ruby on Rails. It discusses that Rails is a full-stack web application framework written in Ruby that follows conventions like DRY and MVC. It allows developers to build database-backed web applications more quickly compared to other frameworks. The document then covers key Rails concepts like migrations, Active Record, associations, validations, and the query interface. It provides examples of generating models and controllers and implementing RESTful actions to perform CRUD operations.
Building Application with Ruby On Rails FrameworkEdureka!
?
Ruby on Rails training certifies you with in demand Web Application Technologies to help you grab the top paying IT job title with Web Application skills and expertise in Full Stack. Rails is written in Ruby, which is a language explicitly designed with the goal of increasing programmer happiness. This unbiased and universal view makes Ruby on Rails unique in today's Job market as a leader in the Web Application platform.
The document discusses setting up a Ruby on Rails web application. It explains how to install Ruby and Rails, configure the database, and generate models. The Rails directory structure is described, including the app, config, and db folders. Finally, it shows how to start the web server and create a basic Rails application.
This document provides an introduction and overview of Ruby on Rails, including what it is, its key features and benefits, and how to get started building a basic web application with Rails. Some of the key points covered include Rails' emphasis on productivity through conventions over configuration, scaffolding, and its implementation of the MVC framework and full-stack capabilities. Examples are also given of generating a controller and view to output basic text and dynamic content.
I prepared this presentation to introduce Ruby on Rails to
a group of students at Universit¨¤ di Catania.
It is not enough to get a good grasp of Rails, the
presentation in fact was supported by live coding, where
I started created a Phrasalbook (no more blog engine
please :) )
Ruby on Rails is an open-source web application framework written in Ruby. It was first released in 2004 and emphasizes convention over configuration, and is designed to make programming web applications easier. The core dependencies needed to use Rails are Ruby, RubyGems, Rails, a database, and tools like Git for version control. Rails uses the MVC pattern with ActiveRecord for models, ActionView for views, and ActionController for controllers.
This document provides an overview of the key changes and improvements in Rails 3 compared to Rails 2. It discusses updates to generators, models, migrations, routes, controllers, views, databases, and adopting unobtrusive JavaScript. New features like ActiveRelation and Turbolinks are also covered.
This document introduces Ruby on Rails (RoR) as a web development framework. It discusses key RoR concepts like MVC architecture, Active Record for object-relational mapping, and migrations for managing database changes. It provides resources for learning RoR, including downloading Ruby and Rails, using version control systems like Subversion, and recommended books and articles. The document emphasizes that RoR aims to increase productivity through conventions over configuration and generating code through scaffolds and templates.
Ruby on Rails, often simply referred to as Rails, is a powerful and popular web
development framework that has transformed the way we build web
applications.
Ruby on Rails is a web application framework that allows developers to build dynamic web applications using the Ruby programming language. It emphasizes convention over configuration and aims to increase developer productivity. Some key features of Rails include its use of the MVC framework, Active Record for database access, scaffolding for quickly building CRUD applications, and support for metaprogramming techniques. Rails also supports test-driven development and provides environments for development, testing and production.
Ruby on Rails is a web application framework that uses the Ruby programming language. It allows developers to create and manage web applications that interact with relational databases through a web-based user interface. Rails emphasizes conventions over configuration, making assumptions about conventions to decrease configuration. It also utilizes metaprogramming techniques and scaffolding to increase developer productivity. Rails follows the model-view-controller architecture and embraces test-driven development.
Ruby on Rails is a web application framework for Ruby that allows developers to create or manage web applications that manipulate relational databases from a web-based user interface. Rails emphasizes convention over configuration, making assumptions about naming and directory structure that allow for rapid development. It implements the model-view-controller architecture and embraces test-driven development. Rails aims to increase productivity by reducing repetition and configuration through conventions and metaprogramming techniques.
Ruby on Rails Scaffold_ Create Your App In Minutesrorbitssoftware
?
Building applications swiftly with Ruby on Rails scaffold enables developers to create projects effortlessly. This powerful tool automates many of the initial steps, allowing for streamlined development in just minutes. With Rails scaffold, you can quickly generate the basic structure of your app, saving time and resources while setting a solid foundation for further customization and feature enhancements.
Ruby is a dynamic programming language that focuses on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write. Ruby on Rails (Rails) is a web application framework written in Ruby that uses the model-view-controller (MVC) pattern. Rails emphasizes conventions over configurations and provides structures for working with databases, web services, and generating web pages. Everything in Ruby is an object, including basic data types, which gives the language flexibility.
? SITUS GACOR TERPERCAYA - KAJIAN4D! ?
? BONUS MELIMPAH UNTUK MEMBER BARU & SETIA! ?
? Bonus New Member 50% (Pragmatic)
? Bonus New Member 20% (PG Soft)
? Bonus Deposit 10%
? Bonus Lucky Spin 500K
? DEPOSIT KILAT HITUNGAN DETIK! ?
? Proses cepat & aman dengan sistem QRIS!
? DAFTAR SEKARANG & RAIH KEMENANGANMU! ?
? GOOGLE: KAJIAN4D
? Mainkan game favoritmu dan nikmati keseruannya bersama KAJIAN4D!
SDLC Corp offers comprehensive and personalized Odoo Demo services, helping businesses explore the full potential of Odoo ERP Our Odoo experts provide hands-on demos of core Odoo modules such as CRM, Sales, Inventory, Accounting, and more. As a trusted Odoo partner, we ensure you experience real-time workflows and tailored functionalities. From customization to integration, we help you make informed decisions with an interactive Odoo demo that highlights efficiency, automation, and business growth opportunities.
SDLC Corp specializes in providing comprehensive Odoo customization services tailored to your unique business needs. We work closely with clients to deliver personalized ERP solutions that enhance operational efficiency and business growth. Our services include custom module development, workflow automation, and user interface/user experience (UI/UX) improvements to ensure the Odoo system aligns perfectly with your organization¡¯s processes.
Mobile App Security Essential Tips to Protect Your App in 2025.pdfWebConnect Pvt Ltd
?
Maintain the integrity of your mobile app in 2025 with successful security implementations. Adopt secure coding, end-to-end encryption, and regular security audits to maintain user data security and trust.
BGP Best Practices, presented by Imtiaz SajidAPNIC
?
Imtiaz Sajid, Network Analyst / Technical Trainer at APNIC, delivered a remote presentation on 'BGP Best Practices' for MMNOG 7 held Yangon, Myanmar from 19 to 22 March 2025.
ºÝºÝߣs: Eco Economic Epochs World Game's Great Redesign .pdfSteven McGee
?
SLIDES: The Great Redesign of The World Game (s) Eco Economic Epochs pdf
intellectual property DeFi foundation technology via an adaptive procedural template tech framework
SDLC Corp offers Odoo Support Service, ensuring seamless business operations with expert assistance. Our Odoo ERP Support Services enhance performance, while Odoo Technical Support resolves issues efficiently, optimizing workflows, improving system reliability, and boosting productivity for long-term success.
Electrical Control Panels for Water Treatment Plants_ Controlling Water Flow ...Balaji Switchgears
?
This document explores the critical role of electrical control panels in water treatment plants, focusing on their design, functionality, and importance in managing water flow and purification processes. It covers key components, automation technologies, and safety measures, providing valuable insights into optimizing water treatment operations through effective control systems.
ewfweqrwqerwrwqrwqr qwr qw r qwrqwrqwrqw rqwrqwr qwrq wr wqr qwrfdwqf qw f qwf qw r qw f qw f qwf qw fqw r q2wr q3 32 r qwf qw f as f werweqt we fr ewf we fw qe fw egew g we g ewg ew ewg weg w eg we g ewg we g ewew
Shopify Store Setup_ Database Management for Large Stores.pdfCartCoders
?
Discover expert Shopify store setup services with CartCoders. Tailored to meet your unique business needs, our team ensures your online store launches smoothly with all necessary features. Maximize your e-commerce potential with our professional support and guidance.
Partner with SDLC Corp, a trusted sted Odoo Service Provider, for tailored Odoo ERP solutions. Our expert services enhance business efficiency through seamless implementation and migration, offering personalized Odoo consultancy services to optimize workflows and support informed decision-making.
Transform your business by merging software development with digital marketing services, utilising cloud solutions for scalability, efficiency, and innovation with Makelink Innovation.
2. An Introduction to Ruby and Rails
Outline
?What is Ruby?
?What is Rails?
?Rails overview.
?Sample RoR application and also with Spree
gem.
2
3. An Introduction to Ruby and Rails
What is Ruby?
? Ruby is a pure object oriented programming language. It was
created on February 24, 1993 by Yukihiro Matsumoto of Japan.
Ruby is a general-purpose, interpreted programming language.
3
4. An Introduction to Ruby and Rails
What is Rails?
? Rails is a web application development framework written in
the Ruby language. It is designed to make programming web
applications easier by making assumptions about what every
developer needs to get started.
? Open Source (MIT license)
? Based on a existing application (Basecamp)
? Provides common needs:
- Routing, sessions
- Database storage
- Business logic
- Generate HTML/XML/CSS/Ajax
? It allows you to write less code while accomplishing more than
many other languages and frameworks.
4
5. An Introduction to Ruby and Rails
Rails Advantages
? Convention over configuration
? Don¡¯t Repeat Yourself
? Object Relational Mapping
? Model View Controller
? Reuse of code
5
6. An Introduction to Ruby and Rails
Convention over Configuration
? Table and foreign key naming
- Tables are multiples (users, orders, ¡)
- Foreign key naming: user_id
? Default locations
- MVC, Test, Languages, Plugins
? Naming
- Class names: CamelCase
- Files: lowercase_underscored.rb
6
7. An Introduction to Ruby and Rails
Don¡¯t repeat yourself
? Everything is defined in a single, unambiguous place
? Easier to find code
- Only need to look once
- Can stop looking when found
- Well defined places for most items
? Much easier to maintain code
- Faster to change
- Less inconsistency bugs
7
8. 8An Introduction to Ruby and Rails
MVC
? Model
- Object relationships
(users, orders)
? Controller
- Business logic (perform
a payment)
? View
- Visual representation
(generate HTML/XML)
8
9. An Introduction to Ruby and Rails
Object Relational Mapping
- Easily stored and retrieved
from a database without writing
SQL statements directly
- Use with less overall database
access code
9
10. An Introduction to Ruby and Rails
Re-use of code
? Gems and plugins, more then 1300
- For authentication, pagination, testing, ¡
? Git allows easy forking and merging
10
11. An Introduction to Ruby and Rails
Rails Disadvantages
? Rails is inefficient
? Rails is hard to desploy
11
12. An Introduction to Ruby and Rails
Rails is inefficient
? Rails uses a lot of memory, up to 150MB per instance
? Requires more application servers
? Where are your development constrains?
12
13. An Introduction to Ruby and Rails
Rails is hard to deploy
? Harder than PHP, better with Passenger
? Lots of moving parts
- Rails, apps, gems, plugins
- Application server, webserver
? Deployment via scripts
- Via the Capistrano tool
- Easy to break something
? Deployment to multiple servers
13
14. An Introduction to Ruby and Rails
Quick Rails Demo:
? $ rails new RoRApp
$ cd RoRApp
(Use an Aptana studio IDE)
? We have 3 environments( in config/database.yml)
1.Development
2.Test
3.Production
14
15. ? If we want to configure the database as mysql2(default database is
sqllite), open the file config/database.yml and modify the database
name and options.
development:
adapter: mysql2
encoding: utf8
database: db/development/dev
username: root
Password: '123456'
? And also we need to add myspl2 gem in Gemfile as
gem 'mysql2'
An Introduction to Ruby and Rails
Configuring the Database:
15
16. An Introduction to Ruby and Rails
Now we need to bundle update which installs the mysql2
gem for our application.
$ bundle update
Create a Database :
? Now we have our database is configured, it¡¯s time to have Rails
create an empty database. We can do this by running a rake
command:
$ rake db:create
16
17. An Introduction to Ruby and Rails
1.rails s (or) (default port is 3000)
2.rails server (or)
3.rails s -p 4000
? Verify whether the rails app is working properly or not by browsing
http://localhost:3000
? Here the default page is rendering from public/index.html
17
19. An Introduction to Ruby and Rails
? If we want to display a user defined text or anything in our home
page, we need to create a controller and a view
$ rails generate controller home index
Rails will create several files, including
app/views/home/index.html.erb and
app/controllers/home_controller.rb
? To make this index file as the home page, 1st
we need to delete the
default public/index.html page
$ rm public/index.html
19
20. An Introduction to Ruby and Rails
? Now, we have to tell Rails where your actual home page is located.
For that open the file config/routes.rb and edit as
root :to => "home#index"
? Check whether our home page is rendering proper page or not, for
that we need to start the rails serve as
$ rails s
20
21. An Introduction to Ruby and Rails
Scaffolding
Rails scaffolding is a quick way to generate some of the major pieces
of an application. If you want to create the models, views, and
controllers for a new resource in a single operation, scaffolding is
the tool for the job.
Example:
Creating a Resource for sessionApp:
We can start by generating a scaffold for the Post resource: this will
represent a single blog posting.
$ rails generate scaffold Post name:string title:string content:text
21
22. An Introduction to Ruby and Rails
File Purpose
db/migrate/20120606184725_create_po
sts.rb
Migration to create the posts table in
your database (your name will include a
different timestamp)
app/models/post.rb The Post model
config/routes.rb Edited to include routing information for
posts
app/controllers/posts_controller.rb The Posts controller
app/views/posts/index.html.erb A view to display an index of all posts
app/views/posts/edit.html.erb A view to edit an existing post
app/views/posts/show.html.erb A view to display a single post
app/views/posts/new.html.erb A view to create a new post
22
23. An Introduction to Ruby and Rails
Running a Migration:
? Rails generate scaffold command create is a database migration.
Migrations are Ruby classes that are designed to make it simple to
create and modify database tables. Rails uses rake commands to
run migrations, and it¡¯s possible to undo a migration ($ rake
db:migrate rollback) after it¡¯s been applied to your database.
23
24. An Introduction to Ruby and Rails
? If we look in the db/migrate/20120606184725_create_posts.rb
class CreatePosts < ActiveRecord::Migration
def change
create_table :posts do |t|
t.string :name
t.string :title
t.text :content
t.timestamps
end
end
? At this point, we can use a rake command to run the migration:
$ rake db:migrate
24
25. An Introduction to Ruby and Rails
Rails will execute this migration command and tell you it created the
Posts table.
== CreatePosts: migrating
===================================================
=
-- create_table(:posts)
-> 0.0019s
== CreatePosts: migrated (0.0020s)
===========================================
25
26. An Introduction to Ruby and Rails
Adding a Link:
? We can add a link to the home page. Open
app/views/home/index.html.erb and modify it as follows:
<h1>Hello, Rails!</h1>
<%= link_to "New Post", posts_path %>
When we run the server it displays the home page as
26
27. An Introduction to Ruby and Rails
The Model:
? The model file, app/models/post.rb is
class Post < ActiveRecord::Base
attr_accessible :content, :name, :title
end
? Active Record supplies a great deal of functionality to our Rails
models for free, including basic database CRUD (Create, Read,
Update, Destroy) operations, data validation
27
28. An Introduction to Ruby and Rails
Adding Some Validation:
? Rails includes methods to help you validate the data that you send to
models. Open the app/models/post.rb file and edit it:
class Post < ActiveRecord::Base
attr_accessible :content, :name, :title
validates :name, :presence => true
validates :title, :presence => true,
:length => {:minimum => 5}
end
28
29. An Introduction to Ruby and Rails
Listing All Posts
? How the application is showing us the list of Posts.
? Open the file app/controllers/posts_controller.rb and look at the
index action:
def index
@posts = Post.all
respond_to do |format|
format.html # index.html.erb
format.json { render :json => @posts }
end
end
29
30. An Introduction to Ruby and Rails
? The HTML format(format.html) looks for a view in
app/views/posts/ with a name that corresponds to the
action name(index). Rails makes all of the instance
variables from the action available to the view. Here¡¯s
app/views/posts/index.html.erb:
30
31. An Introduction to Ruby and Rails
<h1>Listing posts</h1>
<table>
<tr> <th>Name</th>
<th>Title</th>
<th>Content</th>
<th></th>
<th></th>
<th></th>
</tr>
<% @posts.each do |post| %>
<tr>
<td><%= post.name %></td>
<td><%= post.title %></td>
<td><%= post.content %></td>
<td><%= link_to 'Show', post %></td>
<td><%= link_to 'Edit', edit_post_path(post) %></td>
<td><%= link_to 'Destroy', post, :confirm => 'Are you sure?',
:method => :delete %></td>
</tr>
<% end %>
</table>
<br />
<%= link_to 'New post', new_post_path %>
31
32. Creating an App using spree:
? Spree is a full featured commerce platform written for the Ruby on
Rails framework. It is designed to make programming commerce
applications easier by making several assumptions about what most
developers needs to get started. Spree is a production ready store.
An Introduction to Ruby and Rails 32
33. ? Now we are going to see how we create
e-commerce(spree) application.
$ rails new SpreeApp
$ cd SpreeApp
$ spree install
Would you like to install the default gateways? (yes/no) [yes] yes
Would you like to run the migrations? (yes/no) [yes] yes
Would you like to load the seed data? (yes/no) [yes] yes
Would you like to load the sample data? (yes/no) [yes] yes
Admin Email [spree@example.com]
Admin Password [spree123]
Would you like to precompile assets? (yes/no) [yes] yes
$ rails server
An Introduction to Ruby and Rails 33