SlideShare ist ein Scribd-Unternehmen logo
1 von 27
RUBY ON RAILS
MITHUN SASIDHARAN
Web Evangelist & Foss Enthusiast
CONTENTS
 INTRODUCTION
 WHAT IS RUBY?
 JAvA vS RUBY
 WHAT IS RAILS?
 RUBY ON RAILS
 CONCLUSION
INTRODUCTION
 Ruby on Rails, sometimes known as "RoR" or just Rails, is an open source
framework for Web development in Ruby, an object-oriented programming
(OOP) language similar to Perl and Python.
 The principle difference between Ruby on Rails and other frameworks for
development lies in the speed and ease of use that developers working within
the environment enjoy.

 Changes made to applications are immediately applied, avoiding the time
consuming steps normally associated with the web development cycle.
NOW, WHAT’S A WEB AppLICATION ??

A web application is an application that is accessed via web browser over
a network such as the Internet or an intranet. The web Application consists
of a browser, an application and a database.

The browser makes a request to the web application, which then interacts
with the database, and produce suitable output and sends it back to the
browser.
WHAT’S RUBY ?
 Ruby is a dynamic, reflective, general purpose object-oriented
programming language that combines syntax inspired by Perl with
Smalltalk-like features.
 Ruby originated in Japan during the mid-1990s and was initially
developed and designed by Yukihiro "Matz" Matsumoto. It is based on
Perl, Smalltalk, Eiffel, Ada, and Lisp.

 Ruby supports multiple programming paradigms, including
functional, object oriented, imperative and reflective. It is similar in
varying respects to Python, Perl, Lisp, Dylan, and CLU.
FEATURES OF RUBY !!
 Objects everywhere! - In Ruby everything is an object including simple
numeric values. Here is an example,

 Blocks - Blocks is a powerful feature in Ruby which simplifies
programming. Blocks are code blocks which can be passed as a parameter
to a method. Using this feature it is easy to build code libraries which can
delegate varying functionality to code blocks to be built later.

Implicit return value in methods - Value of the last expression in a
method becomes the return value of the method. In Ruby return keyword is
optional.
 In Ruby everything is open! - In Ruby you can easily extend classes
and modules. This means that nothing in Ruby (including built in classes and
modules) are closed!. Interestingly additional methods can be added to a
class even at runtime.
 Ruby supports parallel assignment - It is possible to change multiple
variables in a single assignment. The best example is the swapping of two
variable.
 In Ruby strings are mutable - In Ruby it is possible to change a string
variable in place. Hence unlike Java, the same string literal when used
multiple times will point to different object instances.
 True and false in Ruby - In Ruby only nil and false evaluate to false.
This means that everything else evaluates to true! Hence even the value 0
evaluate to true in ruby.
SIMPLE RUBY PROGRAM TO ADD TWO
NUMBERS
# define a function called addtwo with two parameters
def addtwo(a, b)
a + b; # return a + b
end
print "Please enter number 1 : "; # get the input from the console,
val1 = gets;
print "Please enter number 2 : ";
val2 = gets;
# convert the string console inputs to_i (to_integers) and add together
print "Answer : " , (val1.to_i + val2.to_i), "n";
JAvA vS RUBY !!
•Ruby is interpreted, Java is compiled (before being interpreted)
>ruby my_program.rb

• Code can be loaded at runtime
• Code is easily accessible
• Speed performance issues

>javac MyProgram.java
>java MyProgram
RUBY USE DYNAMIc TYPING
• Values have type, variables not
• Decrease language complexity
- No type declaration
- No type casting
• Increase flexibility
• Errors appears at run-time
RUBY SYNTAx IS TERSE
RUBY SUPPORTS cONcEPT Of
BLOckS
JAvA WIN ON PERfORMANcE fIELD
ON A BUSINESS POINT Of vIEW ! !
• Java is a well-known technology
• Lots of developments have been made with it
• Easy to find experts
• Still not that much available Ruby developers
YET, RUBY PICKING UP MOMENTUM !!
WHAT IS RAILS ??
Rails is a web-application framework that includes everything needed to
create database-backed web applications according to the Model-ViewControl pattern.
Ruby on Rails was extracted by David Heinemeier Hansson from his work
on Basecamp, a project management tool by 37signals (now a web
application company).

Like many contemporary web frameworks, Rails uses the Model-ViewController (MVC) architecture pattern to organize application programming.
WHAT IS A WEB FRAMEWORK ??
 A web application framework is a software framework that is
designed to support the development of dynamic websites, Web applications
and Web services. The framework aims to alleviate the overhead associated
with common activities performed in Web development.

 For example, many frameworks provide libraries for database access,
templating frameworks and session management, and often promote code
reuse.

 Some of the main features of web framework is that they provide
security,database access and mapping,URL mapping,Web template
system,caching,AJAX ,Automatic Configurations and so on.
MVC ARCHITECTURE
Model–view–controller (MVC) is an architectural pattern used in
software engineering. The pattern isolates business logic from input and
presentation, permitting independent development, testing and maintenance
of each.

These frameworks use actions that do the required processing, and then
"push" the data to the view layer to render the results. These frameworks
start with the view layer, which can then "pull" results from multiple
controllers as needed.
MODEL- Used for persistence and relationships.

VIEW- Used for displaying the data.

CONTROLLER- The logic of the application.
FEATURES OF RUBY ON RAILS
Ruby on Rails is separated into various packages, namely ActiveRecord(an
object-relational mapping system for database access), ActiveResource
(provides web services), ActionPack , ActiveSupport and ActionMailer.

Prior to version 2.0, Rails also included the Action Web Service package
which is now replaced by Active Resource.

Apart from standard packages, developers can make plugins to extend
existing packages.
RAILS VS C#/.NET
RAILS VS J2EE
Both have a learning curve.

RAILS has the edge in productivity by a significant margin.

J2EE currently has an edge in scalability. If it’s a client facing system for
millions of concurrent users – use J2EE.

If it’s an internal web application, definitely take a look at this technology as
a possible way of shortcutting the long development time for a J2EE web
application.
OR AnOthER wAy tO put It ……
AppLICAtIOnS OF ROR !!
Ruby On Rails have been in use now by over 500 websites.

Some of the leading websites using
yellowpages.com, lumosity.com and so on.

RoR

are

43things.com,

Ruby on Rails is Picking up the pace and have become more and more
viable in the business scenario.
COnCLuSIOn
RoR an evolving Toolset.

Ruby is what makes Rails special, the interest in general Ruby
programming will continue to expand rapidly

RoR can be best used for small web based applications requring
parallel development.
REFEREnCE
www.rubyonrails.org

www.wikipedia.org

www.37signals.com

The Rails Way- OBIE FERNANDEZ

From Java To Ruby – BRUCE TATE
thAnK yOu !!

Weitere ähnliche Inhalte

Was ist angesagt?

What Is Java | Java Tutorial | Java Programming | Learn Java | Edureka
What Is Java | Java Tutorial | Java Programming | Learn Java | EdurekaWhat Is Java | Java Tutorial | Java Programming | Learn Java | Edureka
What Is Java | Java Tutorial | Java Programming | Learn Java | EdurekaEdureka!
 
ES2015 / ES6: Basics of modern Javascript
ES2015 / ES6: Basics of modern JavascriptES2015 / ES6: Basics of modern Javascript
ES2015 / ES6: Basics of modern JavascriptWojciech Dzikowski
 
Web automation using selenium.ppt
Web automation using selenium.pptWeb automation using selenium.ppt
Web automation using selenium.pptAna Sarbescu
 
ES6 presentation
ES6 presentationES6 presentation
ES6 presentationritika1
 
JavaScript Basics and Best Practices - CC FE & UX
JavaScript Basics and Best Practices - CC FE & UXJavaScript Basics and Best Practices - CC FE & UX
JavaScript Basics and Best Practices - CC FE & UXJWORKS powered by Ordina
 
Automation - web testing with selenium
Automation - web testing with seleniumAutomation - web testing with selenium
Automation - web testing with seleniumTzirla Rozental
 
An Introduction to Test Driven Development
An Introduction to Test Driven Development An Introduction to Test Driven Development
An Introduction to Test Driven Development CodeOps Technologies LLP
 
Presentation on Core java
Presentation on Core javaPresentation on Core java
Presentation on Core javamahir jain
 
Building Event Driven Architectures with Kafka and Cloud Events (Dan Rosanova...
Building Event Driven Architectures with Kafka and Cloud Events (Dan Rosanova...Building Event Driven Architectures with Kafka and Cloud Events (Dan Rosanova...
Building Event Driven Architectures with Kafka and Cloud Events (Dan Rosanova...confluent
 
The Full Stack Web Development
The Full Stack Web DevelopmentThe Full Stack Web Development
The Full Stack Web DevelopmentSam Dias
 
Azure Application insights - An Introduction
Azure Application insights - An IntroductionAzure Application insights - An Introduction
Azure Application insights - An IntroductionMatthias Güntert
 
What is JavaScript? Edureka
What is JavaScript? EdurekaWhat is JavaScript? Edureka
What is JavaScript? EdurekaEdureka!
 

Was ist angesagt? (20)

What Is Java | Java Tutorial | Java Programming | Learn Java | Edureka
What Is Java | Java Tutorial | Java Programming | Learn Java | EdurekaWhat Is Java | Java Tutorial | Java Programming | Learn Java | Edureka
What Is Java | Java Tutorial | Java Programming | Learn Java | Edureka
 
ES2015 / ES6: Basics of modern Javascript
ES2015 / ES6: Basics of modern JavascriptES2015 / ES6: Basics of modern Javascript
ES2015 / ES6: Basics of modern Javascript
 
Web automation using selenium.ppt
Web automation using selenium.pptWeb automation using selenium.ppt
Web automation using selenium.ppt
 
Angularjs PPT
Angularjs PPTAngularjs PPT
Angularjs PPT
 
Ruby on Rails Presentation
Ruby on Rails PresentationRuby on Rails Presentation
Ruby on Rails Presentation
 
ES6 presentation
ES6 presentationES6 presentation
ES6 presentation
 
NodeJS for Beginner
NodeJS for BeginnerNodeJS for Beginner
NodeJS for Beginner
 
JavaScript Basics and Best Practices - CC FE & UX
JavaScript Basics and Best Practices - CC FE & UXJavaScript Basics and Best Practices - CC FE & UX
JavaScript Basics and Best Practices - CC FE & UX
 
Swagger
SwaggerSwagger
Swagger
 
TypeScript - An Introduction
TypeScript - An IntroductionTypeScript - An Introduction
TypeScript - An Introduction
 
Automation - web testing with selenium
Automation - web testing with seleniumAutomation - web testing with selenium
Automation - web testing with selenium
 
Nodejs presentation
Nodejs presentationNodejs presentation
Nodejs presentation
 
An Introduction to Test Driven Development
An Introduction to Test Driven Development An Introduction to Test Driven Development
An Introduction to Test Driven Development
 
Presentation on Core java
Presentation on Core javaPresentation on Core java
Presentation on Core java
 
Angular Observables & RxJS Introduction
Angular Observables & RxJS IntroductionAngular Observables & RxJS Introduction
Angular Observables & RxJS Introduction
 
Building Event Driven Architectures with Kafka and Cloud Events (Dan Rosanova...
Building Event Driven Architectures with Kafka and Cloud Events (Dan Rosanova...Building Event Driven Architectures with Kafka and Cloud Events (Dan Rosanova...
Building Event Driven Architectures with Kafka and Cloud Events (Dan Rosanova...
 
The Full Stack Web Development
The Full Stack Web DevelopmentThe Full Stack Web Development
The Full Stack Web Development
 
Azure Application insights - An Introduction
Azure Application insights - An IntroductionAzure Application insights - An Introduction
Azure Application insights - An Introduction
 
TypeScript VS JavaScript.pptx
TypeScript VS JavaScript.pptxTypeScript VS JavaScript.pptx
TypeScript VS JavaScript.pptx
 
What is JavaScript? Edureka
What is JavaScript? EdurekaWhat is JavaScript? Edureka
What is JavaScript? Edureka
 

Andere mochten auch

2015 bioinformatics python_introduction_wim_vancriekinge_vfinal
2015 bioinformatics python_introduction_wim_vancriekinge_vfinal2015 bioinformatics python_introduction_wim_vancriekinge_vfinal
2015 bioinformatics python_introduction_wim_vancriekinge_vfinalProf. Wim Van Criekinge
 
Intro to java programming
Intro to java programmingIntro to java programming
Intro to java programmingEugene Stephens
 
R Programming Overview
R Programming Overview R Programming Overview
R Programming Overview dlamb3244
 
Overview HTML, HTML5 and Validations
Overview HTML, HTML5 and Validations Overview HTML, HTML5 and Validations
Overview HTML, HTML5 and Validations Yaowaluck Promdee
 
Overview of Java EE 6 by Roberto Chinnici at SFJUG
Overview of Java EE 6 by Roberto Chinnici at SFJUGOverview of Java EE 6 by Roberto Chinnici at SFJUG
Overview of Java EE 6 by Roberto Chinnici at SFJUGMarakana Inc.
 
What is Python? An overview of Python for science.
What is Python? An overview of Python for science.What is Python? An overview of Python for science.
What is Python? An overview of Python for science.Nicholas Pringle
 
A brief overview of java frameworks
A brief overview of java frameworksA brief overview of java frameworks
A brief overview of java frameworksMD Sayem Ahmed
 
Overview of c++
Overview of c++Overview of c++
Overview of c++geeeeeet
 
Ruby Rails Overview
Ruby Rails OverviewRuby Rails Overview
Ruby Rails OverviewNetguru
 

Andere mochten auch (12)

2015 bioinformatics python_introduction_wim_vancriekinge_vfinal
2015 bioinformatics python_introduction_wim_vancriekinge_vfinal2015 bioinformatics python_introduction_wim_vancriekinge_vfinal
2015 bioinformatics python_introduction_wim_vancriekinge_vfinal
 
Intro to java programming
Intro to java programmingIntro to java programming
Intro to java programming
 
R Programming Overview
R Programming Overview R Programming Overview
R Programming Overview
 
Overview HTML, HTML5 and Validations
Overview HTML, HTML5 and Validations Overview HTML, HTML5 and Validations
Overview HTML, HTML5 and Validations
 
Overview of Java EE 6 by Roberto Chinnici at SFJUG
Overview of Java EE 6 by Roberto Chinnici at SFJUGOverview of Java EE 6 by Roberto Chinnici at SFJUG
Overview of Java EE 6 by Roberto Chinnici at SFJUG
 
What is Python? An overview of Python for science.
What is Python? An overview of Python for science.What is Python? An overview of Python for science.
What is Python? An overview of Python for science.
 
A brief overview of java frameworks
A brief overview of java frameworksA brief overview of java frameworks
A brief overview of java frameworks
 
Overview of c++
Overview of c++Overview of c++
Overview of c++
 
C++ Overview PPT
C++ Overview PPTC++ Overview PPT
C++ Overview PPT
 
Ruby Rails Overview
Ruby Rails OverviewRuby Rails Overview
Ruby Rails Overview
 
Python overview
Python   overviewPython   overview
Python overview
 
Introduction to java
Introduction to javaIntroduction to java
Introduction to java
 

Ähnlich wie Introduction to Ruby on Rails

Ruby On Rails
Ruby On RailsRuby On Rails
Ruby On Railsiradarji
 
Ruby Rails Web Development.pdf
Ruby Rails Web Development.pdfRuby Rails Web Development.pdf
Ruby Rails Web Development.pdfAyesha Siddika
 
Instruments ruby on rails
Instruments ruby on railsInstruments ruby on rails
Instruments ruby on railspmashchak
 
Ruby on rails backend development preferred choice for product owners
Ruby on rails backend development preferred choice for product ownersRuby on rails backend development preferred choice for product owners
Ruby on rails backend development preferred choice for product ownersKaty Slemon
 
Ruby on Rails : First Mile
Ruby on Rails : First MileRuby on Rails : First Mile
Ruby on Rails : First MileGourab Mitra
 
Ruby On Rails Seminar Basis Softexpo Feb2010
Ruby On Rails Seminar Basis Softexpo Feb2010Ruby On Rails Seminar Basis Softexpo Feb2010
Ruby On Rails Seminar Basis Softexpo Feb2010arif44
 
Ruby Rails Web Development
Ruby Rails Web DevelopmentRuby Rails Web Development
Ruby Rails Web DevelopmentSonia Simi
 
Why Use Ruby On Rails.pdf
Why Use Ruby On Rails.pdfWhy Use Ruby On Rails.pdf
Why Use Ruby On Rails.pdfKaty Slemon
 
Ror Seminar With agilebd.org on 23 Jan09
Ror Seminar With agilebd.org on 23 Jan09Ror Seminar With agilebd.org on 23 Jan09
Ror Seminar With agilebd.org on 23 Jan09Shaer Hassan
 
A Tour of Ruby On Rails
A Tour of Ruby On RailsA Tour of Ruby On Rails
A Tour of Ruby On RailsDavid Keener
 
Ruby on Rails Web Development Best Practices and Tips.pdf
Ruby on Rails Web Development Best Practices and Tips.pdfRuby on Rails Web Development Best Practices and Tips.pdf
Ruby on Rails Web Development Best Practices and Tips.pdflubnayasminsebl
 
8 awesome benefits of ruby on rails application development
8 awesome benefits of ruby on rails application development 8 awesome benefits of ruby on rails application development
8 awesome benefits of ruby on rails application development rorbitssoftware
 
Real World Rails 5 Programming for Web Developers
Real World Rails 5 Programming for Web DevelopersReal World Rails 5 Programming for Web Developers
Real World Rails 5 Programming for Web Developersprshant navgrha
 
Ruby On Rails - Rochester K Linux User Group
Ruby On Rails - Rochester K Linux User GroupRuby On Rails - Rochester K Linux User Group
Ruby On Rails - Rochester K Linux User GroupJose de Leon
 
Laravel - A Trending PHP Framework
Laravel - A Trending PHP FrameworkLaravel - A Trending PHP Framework
Laravel - A Trending PHP Frameworkijtsrd
 
8 Common Ruby on Rails Development Mistakes to Avoid
8 Common Ruby on Rails Development Mistakes to Avoid8 Common Ruby on Rails Development Mistakes to Avoid
8 Common Ruby on Rails Development Mistakes to Avoidrorbitssoftware
 
Lecture #5 Introduction to rails
Lecture #5 Introduction to railsLecture #5 Introduction to rails
Lecture #5 Introduction to railsEvgeniy Hinyuk
 

Ähnlich wie Introduction to Ruby on Rails (20)

Ruby On Rails
Ruby On RailsRuby On Rails
Ruby On Rails
 
Ruby Rails Web Development.pdf
Ruby Rails Web Development.pdfRuby Rails Web Development.pdf
Ruby Rails Web Development.pdf
 
Instruments ruby on rails
Instruments ruby on railsInstruments ruby on rails
Instruments ruby on rails
 
Ruby on rails backend development preferred choice for product owners
Ruby on rails backend development preferred choice for product ownersRuby on rails backend development preferred choice for product owners
Ruby on rails backend development preferred choice for product owners
 
Ruby on Rails : First Mile
Ruby on Rails : First MileRuby on Rails : First Mile
Ruby on Rails : First Mile
 
Ruby On Rails Seminar Basis Softexpo Feb2010
Ruby On Rails Seminar Basis Softexpo Feb2010Ruby On Rails Seminar Basis Softexpo Feb2010
Ruby On Rails Seminar Basis Softexpo Feb2010
 
TorqueBox
TorqueBoxTorqueBox
TorqueBox
 
Ruby Rails Web Development
Ruby Rails Web DevelopmentRuby Rails Web Development
Ruby Rails Web Development
 
Why Use Ruby On Rails.pdf
Why Use Ruby On Rails.pdfWhy Use Ruby On Rails.pdf
Why Use Ruby On Rails.pdf
 
Aspose pdf
Aspose pdfAspose pdf
Aspose pdf
 
Ror Seminar With agilebd.org on 23 Jan09
Ror Seminar With agilebd.org on 23 Jan09Ror Seminar With agilebd.org on 23 Jan09
Ror Seminar With agilebd.org on 23 Jan09
 
Rails Concept
Rails ConceptRails Concept
Rails Concept
 
A Tour of Ruby On Rails
A Tour of Ruby On RailsA Tour of Ruby On Rails
A Tour of Ruby On Rails
 
Ruby on Rails Web Development Best Practices and Tips.pdf
Ruby on Rails Web Development Best Practices and Tips.pdfRuby on Rails Web Development Best Practices and Tips.pdf
Ruby on Rails Web Development Best Practices and Tips.pdf
 
8 awesome benefits of ruby on rails application development
8 awesome benefits of ruby on rails application development 8 awesome benefits of ruby on rails application development
8 awesome benefits of ruby on rails application development
 
Real World Rails 5 Programming for Web Developers
Real World Rails 5 Programming for Web DevelopersReal World Rails 5 Programming for Web Developers
Real World Rails 5 Programming for Web Developers
 
Ruby On Rails - Rochester K Linux User Group
Ruby On Rails - Rochester K Linux User GroupRuby On Rails - Rochester K Linux User Group
Ruby On Rails - Rochester K Linux User Group
 
Laravel - A Trending PHP Framework
Laravel - A Trending PHP FrameworkLaravel - A Trending PHP Framework
Laravel - A Trending PHP Framework
 
8 Common Ruby on Rails Development Mistakes to Avoid
8 Common Ruby on Rails Development Mistakes to Avoid8 Common Ruby on Rails Development Mistakes to Avoid
8 Common Ruby on Rails Development Mistakes to Avoid
 
Lecture #5 Introduction to rails
Lecture #5 Introduction to railsLecture #5 Introduction to rails
Lecture #5 Introduction to rails
 

Kürzlich hochgeladen

Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Zilliz
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Bhuvaneswari Subramani
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 

Kürzlich hochgeladen (20)

Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 

Introduction to Ruby on Rails

  • 1. RUBY ON RAILS MITHUN SASIDHARAN Web Evangelist & Foss Enthusiast
  • 2. CONTENTS  INTRODUCTION  WHAT IS RUBY?  JAvA vS RUBY  WHAT IS RAILS?  RUBY ON RAILS  CONCLUSION
  • 3. INTRODUCTION  Ruby on Rails, sometimes known as "RoR" or just Rails, is an open source framework for Web development in Ruby, an object-oriented programming (OOP) language similar to Perl and Python.  The principle difference between Ruby on Rails and other frameworks for development lies in the speed and ease of use that developers working within the environment enjoy.  Changes made to applications are immediately applied, avoiding the time consuming steps normally associated with the web development cycle.
  • 4. NOW, WHAT’S A WEB AppLICATION ?? A web application is an application that is accessed via web browser over a network such as the Internet or an intranet. The web Application consists of a browser, an application and a database. The browser makes a request to the web application, which then interacts with the database, and produce suitable output and sends it back to the browser.
  • 5. WHAT’S RUBY ?  Ruby is a dynamic, reflective, general purpose object-oriented programming language that combines syntax inspired by Perl with Smalltalk-like features.  Ruby originated in Japan during the mid-1990s and was initially developed and designed by Yukihiro "Matz" Matsumoto. It is based on Perl, Smalltalk, Eiffel, Ada, and Lisp.  Ruby supports multiple programming paradigms, including functional, object oriented, imperative and reflective. It is similar in varying respects to Python, Perl, Lisp, Dylan, and CLU.
  • 6. FEATURES OF RUBY !!  Objects everywhere! - In Ruby everything is an object including simple numeric values. Here is an example,  Blocks - Blocks is a powerful feature in Ruby which simplifies programming. Blocks are code blocks which can be passed as a parameter to a method. Using this feature it is easy to build code libraries which can delegate varying functionality to code blocks to be built later. Implicit return value in methods - Value of the last expression in a method becomes the return value of the method. In Ruby return keyword is optional.
  • 7.  In Ruby everything is open! - In Ruby you can easily extend classes and modules. This means that nothing in Ruby (including built in classes and modules) are closed!. Interestingly additional methods can be added to a class even at runtime.  Ruby supports parallel assignment - It is possible to change multiple variables in a single assignment. The best example is the swapping of two variable.  In Ruby strings are mutable - In Ruby it is possible to change a string variable in place. Hence unlike Java, the same string literal when used multiple times will point to different object instances.  True and false in Ruby - In Ruby only nil and false evaluate to false. This means that everything else evaluates to true! Hence even the value 0 evaluate to true in ruby.
  • 8. SIMPLE RUBY PROGRAM TO ADD TWO NUMBERS # define a function called addtwo with two parameters def addtwo(a, b) a + b; # return a + b end print "Please enter number 1 : "; # get the input from the console, val1 = gets; print "Please enter number 2 : "; val2 = gets; # convert the string console inputs to_i (to_integers) and add together print "Answer : " , (val1.to_i + val2.to_i), "n";
  • 9. JAvA vS RUBY !! •Ruby is interpreted, Java is compiled (before being interpreted) >ruby my_program.rb • Code can be loaded at runtime • Code is easily accessible • Speed performance issues >javac MyProgram.java >java MyProgram
  • 10. RUBY USE DYNAMIc TYPING • Values have type, variables not • Decrease language complexity - No type declaration - No type casting • Increase flexibility • Errors appears at run-time
  • 11. RUBY SYNTAx IS TERSE
  • 13. JAvA WIN ON PERfORMANcE fIELD
  • 14. ON A BUSINESS POINT Of vIEW ! ! • Java is a well-known technology • Lots of developments have been made with it • Easy to find experts • Still not that much available Ruby developers
  • 15. YET, RUBY PICKING UP MOMENTUM !!
  • 16. WHAT IS RAILS ?? Rails is a web-application framework that includes everything needed to create database-backed web applications according to the Model-ViewControl pattern. Ruby on Rails was extracted by David Heinemeier Hansson from his work on Basecamp, a project management tool by 37signals (now a web application company). Like many contemporary web frameworks, Rails uses the Model-ViewController (MVC) architecture pattern to organize application programming.
  • 17. WHAT IS A WEB FRAMEWORK ??  A web application framework is a software framework that is designed to support the development of dynamic websites, Web applications and Web services. The framework aims to alleviate the overhead associated with common activities performed in Web development.  For example, many frameworks provide libraries for database access, templating frameworks and session management, and often promote code reuse.  Some of the main features of web framework is that they provide security,database access and mapping,URL mapping,Web template system,caching,AJAX ,Automatic Configurations and so on.
  • 18. MVC ARCHITECTURE Model–view–controller (MVC) is an architectural pattern used in software engineering. The pattern isolates business logic from input and presentation, permitting independent development, testing and maintenance of each. These frameworks use actions that do the required processing, and then "push" the data to the view layer to render the results. These frameworks start with the view layer, which can then "pull" results from multiple controllers as needed.
  • 19. MODEL- Used for persistence and relationships. VIEW- Used for displaying the data. CONTROLLER- The logic of the application.
  • 20. FEATURES OF RUBY ON RAILS Ruby on Rails is separated into various packages, namely ActiveRecord(an object-relational mapping system for database access), ActiveResource (provides web services), ActionPack , ActiveSupport and ActionMailer. Prior to version 2.0, Rails also included the Action Web Service package which is now replaced by Active Resource. Apart from standard packages, developers can make plugins to extend existing packages.
  • 22. RAILS VS J2EE Both have a learning curve. RAILS has the edge in productivity by a significant margin. J2EE currently has an edge in scalability. If it’s a client facing system for millions of concurrent users – use J2EE. If it’s an internal web application, definitely take a look at this technology as a possible way of shortcutting the long development time for a J2EE web application.
  • 23. OR AnOthER wAy tO put It ……
  • 24. AppLICAtIOnS OF ROR !! Ruby On Rails have been in use now by over 500 websites. Some of the leading websites using yellowpages.com, lumosity.com and so on. RoR are 43things.com, Ruby on Rails is Picking up the pace and have become more and more viable in the business scenario.
  • 25. COnCLuSIOn RoR an evolving Toolset. Ruby is what makes Rails special, the interest in general Ruby programming will continue to expand rapidly RoR can be best used for small web based applications requring parallel development.