SlideShare a Scribd company logo
Ruby on Rails
Development
What is Ruby on
Rails ?
● Ruby on Rails is a web application framework written in
Ruby, a dynamic programming language.
● Ruby on Rails uses the MVC (Model-View-Controller)
architecture pattern to organize application programming.
● Ruby on Rails is a web application framework written in
Ruby, a dynamic programming language.
● Ruby on Rails uses the MVC (Model-View-Controller)
architecture pattern to organize application programming.
Ruby on Rails
Features
Rails is packed with features that make you more
productive, with many of the following features building on
one other.
● Meta programming:
● Active Record
● Convention over configuration
● Scaffolding
● Built-in testing
● Three environments
Rails is packed with features that make you more
productive, with many of the following features building on
one other.
● Meta programming:
● Active Record
● Convention over configuration
● Scaffolding
● Built-in testing
● Three environments
Sample Ruby
Code
# Output “Name”
puts “Bhaskar”
# Output “Name” in upprecase
puts “Bhaskar”.upcase
# Output “Name” 10 times
10.times do puts
“Bhaskar”.upcase
end
Sample Ruby Code:
Class
Class Employee: defining three attributes for a
Employee; name, age, position
class Employee # must be capitalized
attr_accessor :name, :age, :position
# The initialize method is the constructor
def initialize(name, age, position)
@name = name
@age = type
@position = color
end
New
Employee
Creating an instance of the Employee class:
a = Employee.new(“JAY", “23", “Test Engineer")
b = Employee.new(“SAM", “24", “Test Engineer")
Meth
od
To be able to describe employees, we add a
method to the employee class:
def describe
@name + " is of " + @age + " years"
+" working as "
+ @position+ ".n"
end
Calling
Method
To get the description of Employee, we can call
Employee with the describe method attached :
emp= a.describe
puts emp
Or:
puts a.describe
Rails implements the model-
viewcontroller
(MVC) architecture.
Model View Contoller
(MVC)
● The MVC design pattern separates the
component parts of an application
● MVC pattern allows rapid change and evolution
of the user interface and controller separate
from the data model
Mod
el
Contains the data of the application
● Transient
● Stored (eg Database)
Enforces "business" rules of the application
● Attributes
● Work flow
Vie
w
● Provides the user interface
● Dynamic content rendered through templates
Three major types
● Ruby code in erb (embedded ruby) templates
● xml.builder templates
● rjs templates (for javascript, and thus ajax)
Controll
er
● Perform the bulk of the heavy lifting
● Handles web requests
● Maintains session state
● Performs caching
● Manages helper modules
Creating a Simple
Application
Requirements
● Ruby
● RubyGems
● Rails
● SQlite, PostGres or MySQL
Creating a Simple
Application
Requirements
● Ruby
● RubyGems
● Rails
● SQlite, PostGres or MySQL
Creating a Simple
Application
Convention over configuration
● Most Web development frameworks for .NET or Java
forces to write pages of configuration code, instead Rails
doesn't need much configuration.The total configuration
code can be reduced by a factor of five or more over
similar Java frameworks just by following common
conventions.
● Naming your data model class with the same name as
the corresponding database table
● ‘id’ as the primary key name.

More Related Content

What's hot

How angularjs saves rails
How angularjs saves railsHow angularjs saves rails
How angularjs saves rails
Michael He
 
Non-Microsoft Technologies Which Microsoft is Embracing
Non-Microsoft Technologies Which Microsoft is EmbracingNon-Microsoft Technologies Which Microsoft is Embracing
Non-Microsoft Technologies Which Microsoft is Embracing
Elton Stoneman
 
AngularJS meets Rails
AngularJS meets RailsAngularJS meets Rails
AngularJS meets Rails
Elena Torró
 
Apache Gobblin
Apache GobblinApache Gobblin
Apache Gobblin
Mike Frampton
 
4. introduction to Asp.Net MVC - Part II
4. introduction to Asp.Net MVC - Part II4. introduction to Asp.Net MVC - Part II
4. introduction to Asp.Net MVC - Part II
Rohit Rao
 
Unpacking .NET Core | EastBanc Technologies
Unpacking .NET Core | EastBanc TechnologiesUnpacking .NET Core | EastBanc Technologies
Unpacking .NET Core | EastBanc Technologies
EastBanc Tachnologies
 
Laravel & Composer presentation - extended
Laravel & Composer presentation - extendedLaravel & Composer presentation - extended
Laravel & Composer presentation - extended
Cvetomir Denchev
 
Ruby on Rails : First Mile
Ruby on Rails : First MileRuby on Rails : First Mile
Ruby on Rails : First Mile
Gourab Mitra
 
Ruby On Rails - webdevelopment wordt weer leuk!
Ruby On Rails - webdevelopment wordt weer leuk!Ruby On Rails - webdevelopment wordt weer leuk!
Ruby On Rails - webdevelopment wordt weer leuk!
Martin Hietkamp
 
Rails engines
Rails enginesRails engines
Rails engines
Ismael G Marín C
 
Camunda GraphQL Extension (09/2017 Berlin)
Camunda GraphQL Extension (09/2017 Berlin)Camunda GraphQL Extension (09/2017 Berlin)
Camunda GraphQL Extension (09/2017 Berlin)
Harald J. Loydl
 
Дмитрий Тежельников «Разработка вэб-решений с использованием Asp.NET.Core и ...
Дмитрий Тежельников  «Разработка вэб-решений с использованием Asp.NET.Core и ...Дмитрий Тежельников  «Разработка вэб-решений с использованием Asp.NET.Core и ...
Дмитрий Тежельников «Разработка вэб-решений с использованием Asp.NET.Core и ...
MskDotNet Community
 
React.js for Rails Developers
React.js for Rails DevelopersReact.js for Rails Developers
React.js for Rails Developers
Arkency
 
AngularJS
AngularJSAngularJS
AngularJS
Yogesh L
 
CraftCamp for Students - Introduction to AngularJS
CraftCamp for Students - Introduction to AngularJSCraftCamp for Students - Introduction to AngularJS
CraftCamp for Students - Introduction to AngularJS
craftworkz
 
Project Fedena and Why Ruby on Rails - ArvindArvind G S
Project Fedena and Why Ruby on Rails - ArvindArvind G SProject Fedena and Why Ruby on Rails - ArvindArvind G S
Project Fedena and Why Ruby on Rails - ArvindArvind G S
ThoughtWorks
 
Clovaを支える技術 機械学習配信基盤のご紹介
Clovaを支える技術 機械学習配信基盤のご紹介Clovaを支える技術 機械学習配信基盤のご紹介
Clovaを支える技術 機械学習配信基盤のご紹介
LINE Corporation
 
Angular basicschat
Angular basicschatAngular basicschat
Angular basicschatYu Jin
 
MAppMechanic CodeLabs - PolymerJS Advanced Topics for Custom Elements
MAppMechanic CodeLabs - PolymerJS Advanced Topics for Custom ElementsMAppMechanic CodeLabs - PolymerJS Advanced Topics for Custom Elements
MAppMechanic CodeLabs - PolymerJS Advanced Topics for Custom Elements
Rahat Khanna a.k.a mAppMechanic
 

What's hot (20)

How angularjs saves rails
How angularjs saves railsHow angularjs saves rails
How angularjs saves rails
 
Non-Microsoft Technologies Which Microsoft is Embracing
Non-Microsoft Technologies Which Microsoft is EmbracingNon-Microsoft Technologies Which Microsoft is Embracing
Non-Microsoft Technologies Which Microsoft is Embracing
 
AngularJS meets Rails
AngularJS meets RailsAngularJS meets Rails
AngularJS meets Rails
 
Rails Concept
Rails ConceptRails Concept
Rails Concept
 
Apache Gobblin
Apache GobblinApache Gobblin
Apache Gobblin
 
4. introduction to Asp.Net MVC - Part II
4. introduction to Asp.Net MVC - Part II4. introduction to Asp.Net MVC - Part II
4. introduction to Asp.Net MVC - Part II
 
Unpacking .NET Core | EastBanc Technologies
Unpacking .NET Core | EastBanc TechnologiesUnpacking .NET Core | EastBanc Technologies
Unpacking .NET Core | EastBanc Technologies
 
Laravel & Composer presentation - extended
Laravel & Composer presentation - extendedLaravel & Composer presentation - extended
Laravel & Composer presentation - extended
 
Ruby on Rails : First Mile
Ruby on Rails : First MileRuby on Rails : First Mile
Ruby on Rails : First Mile
 
Ruby On Rails - webdevelopment wordt weer leuk!
Ruby On Rails - webdevelopment wordt weer leuk!Ruby On Rails - webdevelopment wordt weer leuk!
Ruby On Rails - webdevelopment wordt weer leuk!
 
Rails engines
Rails enginesRails engines
Rails engines
 
Camunda GraphQL Extension (09/2017 Berlin)
Camunda GraphQL Extension (09/2017 Berlin)Camunda GraphQL Extension (09/2017 Berlin)
Camunda GraphQL Extension (09/2017 Berlin)
 
Дмитрий Тежельников «Разработка вэб-решений с использованием Asp.NET.Core и ...
Дмитрий Тежельников  «Разработка вэб-решений с использованием Asp.NET.Core и ...Дмитрий Тежельников  «Разработка вэб-решений с использованием Asp.NET.Core и ...
Дмитрий Тежельников «Разработка вэб-решений с использованием Asp.NET.Core и ...
 
React.js for Rails Developers
React.js for Rails DevelopersReact.js for Rails Developers
React.js for Rails Developers
 
AngularJS
AngularJSAngularJS
AngularJS
 
CraftCamp for Students - Introduction to AngularJS
CraftCamp for Students - Introduction to AngularJSCraftCamp for Students - Introduction to AngularJS
CraftCamp for Students - Introduction to AngularJS
 
Project Fedena and Why Ruby on Rails - ArvindArvind G S
Project Fedena and Why Ruby on Rails - ArvindArvind G SProject Fedena and Why Ruby on Rails - ArvindArvind G S
Project Fedena and Why Ruby on Rails - ArvindArvind G S
 
Clovaを支える技術 機械学習配信基盤のご紹介
Clovaを支える技術 機械学習配信基盤のご紹介Clovaを支える技術 機械学習配信基盤のご紹介
Clovaを支える技術 機械学習配信基盤のご紹介
 
Angular basicschat
Angular basicschatAngular basicschat
Angular basicschat
 
MAppMechanic CodeLabs - PolymerJS Advanced Topics for Custom Elements
MAppMechanic CodeLabs - PolymerJS Advanced Topics for Custom ElementsMAppMechanic CodeLabs - PolymerJS Advanced Topics for Custom Elements
MAppMechanic CodeLabs - PolymerJS Advanced Topics for Custom Elements
 

Similar to ruby on rails development company in india

Aspose pdf
Aspose pdfAspose pdf
Aspose pdf
Jim Jones
 
Server-side Web development via Ruby on Rails
Server-side Web development via Ruby on RailsServer-side Web development via Ruby on Rails
Server-side Web development via Ruby on Railsg3ppy
 
Ruby Rails Web Development
Ruby Rails Web DevelopmentRuby Rails Web Development
Ruby Rails Web Development
Sonia Simi
 
Beginners' guide to Ruby on Rails
Beginners' guide to Ruby on RailsBeginners' guide to Ruby on Rails
Beginners' guide to Ruby on RailsVictor Porof
 
4 Anguadasdfasdasdfasdfsdfasdfaslar (1).pptx
4 Anguadasdfasdasdfasdfsdfasdfaslar (1).pptx4 Anguadasdfasdasdfasdfsdfasdfaslar (1).pptx
4 Anguadasdfasdasdfasdfsdfasdfaslar (1).pptx
tilejak773
 
Mvc fundamental
Mvc fundamentalMvc fundamental
Mvc fundamental
Nguyễn Thành Phát
 
Introduction to Ruby on Rails
Introduction to Ruby on RailsIntroduction to Ruby on Rails
Introduction to Ruby on Rails
Agnieszka Figiel
 
Asp 1a-aspnetmvc
Asp 1a-aspnetmvcAsp 1a-aspnetmvc
Asp 1a-aspnetmvc
Fajar Baskoro
 
Aspnetmvc 1
Aspnetmvc 1Aspnetmvc 1
Aspnetmvc 1
Fajar Baskoro
 
Asp.net With mvc handson
Asp.net With mvc handsonAsp.net With mvc handson
Asp.net With mvc handson
Prashant Kumar
 
Lecture #5 Introduction to rails
Lecture #5 Introduction to railsLecture #5 Introduction to rails
Lecture #5 Introduction to rails
Evgeniy Hinyuk
 
Introduction to Rails by Evgeniy Hinyuk
Introduction to Rails by Evgeniy HinyukIntroduction to Rails by Evgeniy Hinyuk
Introduction to Rails by Evgeniy Hinyuk
Pivorak MeetUp
 
What is Mean Stack Development ?
What is Mean Stack Development ?What is Mean Stack Development ?
What is Mean Stack Development ?
Balajihope
 
What is ASP.NET MVC
What is ASP.NET MVCWhat is ASP.NET MVC
What is ASP.NET MVC
Brad Oyler
 
Mean stack
Mean stackMean stack
Mean stack
RavikantGautam8
 
ZZ BC#7 asp.net mvc practice and guideline by NineMvp
ZZ BC#7 asp.net mvc practice and guideline by NineMvpZZ BC#7 asp.net mvc practice and guideline by NineMvp
ZZ BC#7 asp.net mvc practice and guideline by NineMvpChalermpon Areepong
 

Similar to ruby on rails development company in india (20)

Aspose pdf
Aspose pdfAspose pdf
Aspose pdf
 
Server-side Web development via Ruby on Rails
Server-side Web development via Ruby on RailsServer-side Web development via Ruby on Rails
Server-side Web development via Ruby on Rails
 
Ruby Rails Web Development
Ruby Rails Web DevelopmentRuby Rails Web Development
Ruby Rails Web Development
 
Beginners' guide to Ruby on Rails
Beginners' guide to Ruby on RailsBeginners' guide to Ruby on Rails
Beginners' guide to Ruby on Rails
 
4 Anguadasdfasdasdfasdfsdfasdfaslar (1).pptx
4 Anguadasdfasdasdfasdfsdfasdfaslar (1).pptx4 Anguadasdfasdasdfasdfsdfasdfaslar (1).pptx
4 Anguadasdfasdasdfasdfsdfasdfaslar (1).pptx
 
Mvc fundamental
Mvc fundamentalMvc fundamental
Mvc fundamental
 
Introduction to Ruby on Rails
Introduction to Ruby on RailsIntroduction to Ruby on Rails
Introduction to Ruby on Rails
 
Asp 1a-aspnetmvc
Asp 1a-aspnetmvcAsp 1a-aspnetmvc
Asp 1a-aspnetmvc
 
Aspnetmvc 1
Aspnetmvc 1Aspnetmvc 1
Aspnetmvc 1
 
Ruby on rails
Ruby on railsRuby on rails
Ruby on rails
 
Ruby on Rails
Ruby on Rails Ruby on Rails
Ruby on Rails
 
Ruby on rails
Ruby on railsRuby on rails
Ruby on rails
 
Asp.net With mvc handson
Asp.net With mvc handsonAsp.net With mvc handson
Asp.net With mvc handson
 
Lecture #5 Introduction to rails
Lecture #5 Introduction to railsLecture #5 Introduction to rails
Lecture #5 Introduction to rails
 
Introduction to Rails by Evgeniy Hinyuk
Introduction to Rails by Evgeniy HinyukIntroduction to Rails by Evgeniy Hinyuk
Introduction to Rails by Evgeniy Hinyuk
 
What is Mean Stack Development ?
What is Mean Stack Development ?What is Mean Stack Development ?
What is Mean Stack Development ?
 
Mvc
MvcMvc
Mvc
 
What is ASP.NET MVC
What is ASP.NET MVCWhat is ASP.NET MVC
What is ASP.NET MVC
 
Mean stack
Mean stackMean stack
Mean stack
 
ZZ BC#7 asp.net mvc practice and guideline by NineMvp
ZZ BC#7 asp.net mvc practice and guideline by NineMvpZZ BC#7 asp.net mvc practice and guideline by NineMvp
ZZ BC#7 asp.net mvc practice and guideline by NineMvp
 

More from SAG IPL

12 Robust Strategies To Make NFT Games Viral.pdf
12 Robust Strategies To Make NFT Games Viral.pdf12 Robust Strategies To Make NFT Games Viral.pdf
12 Robust Strategies To Make NFT Games Viral.pdf
SAG IPL
 
Checkout The ICO Development Checklist
Checkout The ICO Development ChecklistCheckout The ICO Development Checklist
Checkout The ICO Development Checklist
SAG IPL
 
Avoid SEO Fifteen Common Mistake
Avoid  SEO Fifteen Common Mistake Avoid  SEO Fifteen Common Mistake
Avoid SEO Fifteen Common Mistake
SAG IPL
 
All You Need To Know About ICO (Infographic)
All You Need To Know About ICO (Infographic)All You Need To Know About ICO (Infographic)
All You Need To Know About ICO (Infographic)
SAG IPL
 
100 Interesting Facts - No One Will Tell You About That
100 Interesting Facts - No One Will Tell You About That100 Interesting Facts - No One Will Tell You About That
100 Interesting Facts - No One Will Tell You About That
SAG IPL
 
The Ultimate Guide to Effective App Store Optimization
The Ultimate Guide to Effective App Store OptimizationThe Ultimate Guide to Effective App Store Optimization
The Ultimate Guide to Effective App Store Optimization
SAG IPL
 
Freelancers vs Web Development Company - SAG IPL
Freelancers vs Web Development Company - SAG IPLFreelancers vs Web Development Company - SAG IPL
Freelancers vs Web Development Company - SAG IPL
SAG IPL
 
Wordpress Statistics For 2017
Wordpress Statistics For 2017Wordpress Statistics For 2017
Wordpress Statistics For 2017
SAG IPL
 

More from SAG IPL (8)

12 Robust Strategies To Make NFT Games Viral.pdf
12 Robust Strategies To Make NFT Games Viral.pdf12 Robust Strategies To Make NFT Games Viral.pdf
12 Robust Strategies To Make NFT Games Viral.pdf
 
Checkout The ICO Development Checklist
Checkout The ICO Development ChecklistCheckout The ICO Development Checklist
Checkout The ICO Development Checklist
 
Avoid SEO Fifteen Common Mistake
Avoid  SEO Fifteen Common Mistake Avoid  SEO Fifteen Common Mistake
Avoid SEO Fifteen Common Mistake
 
All You Need To Know About ICO (Infographic)
All You Need To Know About ICO (Infographic)All You Need To Know About ICO (Infographic)
All You Need To Know About ICO (Infographic)
 
100 Interesting Facts - No One Will Tell You About That
100 Interesting Facts - No One Will Tell You About That100 Interesting Facts - No One Will Tell You About That
100 Interesting Facts - No One Will Tell You About That
 
The Ultimate Guide to Effective App Store Optimization
The Ultimate Guide to Effective App Store OptimizationThe Ultimate Guide to Effective App Store Optimization
The Ultimate Guide to Effective App Store Optimization
 
Freelancers vs Web Development Company - SAG IPL
Freelancers vs Web Development Company - SAG IPLFreelancers vs Web Development Company - SAG IPL
Freelancers vs Web Development Company - SAG IPL
 
Wordpress Statistics For 2017
Wordpress Statistics For 2017Wordpress Statistics For 2017
Wordpress Statistics For 2017
 

Recently uploaded

Project File Report BBA 6th semester.pdf
Project File Report BBA 6th semester.pdfProject File Report BBA 6th semester.pdf
Project File Report BBA 6th semester.pdf
RajPriye
 
Digital Transformation and IT Strategy Toolkit and Templates
Digital Transformation and IT Strategy Toolkit and TemplatesDigital Transformation and IT Strategy Toolkit and Templates
Digital Transformation and IT Strategy Toolkit and Templates
Aurelien Domont, MBA
 
Brand Analysis for an artist named Struan
Brand Analysis for an artist named StruanBrand Analysis for an artist named Struan
Brand Analysis for an artist named Struan
sarahvanessa51503
 
Maksym Vyshnivetskyi: PMO Quality Management (UA)
Maksym Vyshnivetskyi: PMO Quality Management (UA)Maksym Vyshnivetskyi: PMO Quality Management (UA)
Maksym Vyshnivetskyi: PMO Quality Management (UA)
Lviv Startup Club
 
ikea_woodgreen_petscharity_cat-alogue_digital.pdf
ikea_woodgreen_petscharity_cat-alogue_digital.pdfikea_woodgreen_petscharity_cat-alogue_digital.pdf
ikea_woodgreen_petscharity_cat-alogue_digital.pdf
agatadrynko
 
ModelingMarketingStrategiesMKS.CollumbiaUniversitypdf
ModelingMarketingStrategiesMKS.CollumbiaUniversitypdfModelingMarketingStrategiesMKS.CollumbiaUniversitypdf
ModelingMarketingStrategiesMKS.CollumbiaUniversitypdf
fisherameliaisabella
 
Buy Verified PayPal Account | Buy Google 5 Star Reviews
Buy Verified PayPal Account | Buy Google 5 Star ReviewsBuy Verified PayPal Account | Buy Google 5 Star Reviews
Buy Verified PayPal Account | Buy Google 5 Star Reviews
usawebmarket
 
The Influence of Marketing Strategy and Market Competition on Business Perfor...
The Influence of Marketing Strategy and Market Competition on Business Perfor...The Influence of Marketing Strategy and Market Competition on Business Perfor...
The Influence of Marketing Strategy and Market Competition on Business Perfor...
Adam Smith
 
Skye Residences | Extended Stay Residences Near Toronto Airport
Skye Residences | Extended Stay Residences Near Toronto AirportSkye Residences | Extended Stay Residences Near Toronto Airport
Skye Residences | Extended Stay Residences Near Toronto Airport
marketingjdass
 
ikea_woodgreen_petscharity_dog-alogue_digital.pdf
ikea_woodgreen_petscharity_dog-alogue_digital.pdfikea_woodgreen_petscharity_dog-alogue_digital.pdf
ikea_woodgreen_petscharity_dog-alogue_digital.pdf
agatadrynko
 
Cree_Rey_BrandIdentityKit.PDF_PersonalBd
Cree_Rey_BrandIdentityKit.PDF_PersonalBdCree_Rey_BrandIdentityKit.PDF_PersonalBd
Cree_Rey_BrandIdentityKit.PDF_PersonalBd
creerey
 
Introduction to Amazon company 111111111111
Introduction to Amazon company 111111111111Introduction to Amazon company 111111111111
Introduction to Amazon company 111111111111
zoyaansari11365
 
Putting the SPARK into Virtual Training.pptx
Putting the SPARK into Virtual Training.pptxPutting the SPARK into Virtual Training.pptx
Putting the SPARK into Virtual Training.pptx
Cynthia Clay
 
VAT Registration Outlined In UAE: Benefits and Requirements
VAT Registration Outlined In UAE: Benefits and RequirementsVAT Registration Outlined In UAE: Benefits and Requirements
VAT Registration Outlined In UAE: Benefits and Requirements
uae taxgpt
 
Unveiling the Secrets How Does Generative AI Work.pdf
Unveiling the Secrets How Does Generative AI Work.pdfUnveiling the Secrets How Does Generative AI Work.pdf
Unveiling the Secrets How Does Generative AI Work.pdf
Sam H
 
20240425_ TJ Communications Credentials_compressed.pdf
20240425_ TJ Communications Credentials_compressed.pdf20240425_ TJ Communications Credentials_compressed.pdf
20240425_ TJ Communications Credentials_compressed.pdf
tjcomstrang
 
Discover the innovative and creative projects that highlight my journey throu...
Discover the innovative and creative projects that highlight my journey throu...Discover the innovative and creative projects that highlight my journey throu...
Discover the innovative and creative projects that highlight my journey throu...
dylandmeas
 
The Parable of the Pipeline a book every new businessman or business student ...
The Parable of the Pipeline a book every new businessman or business student ...The Parable of the Pipeline a book every new businessman or business student ...
The Parable of the Pipeline a book every new businessman or business student ...
awaisafdar
 
BeMetals Presentation_May_22_2024 .pdf
BeMetals Presentation_May_22_2024   .pdfBeMetals Presentation_May_22_2024   .pdf
BeMetals Presentation_May_22_2024 .pdf
DerekIwanaka1
 
What are the main advantages of using HR recruiter services.pdf
What are the main advantages of using HR recruiter services.pdfWhat are the main advantages of using HR recruiter services.pdf
What are the main advantages of using HR recruiter services.pdf
HumanResourceDimensi1
 

Recently uploaded (20)

Project File Report BBA 6th semester.pdf
Project File Report BBA 6th semester.pdfProject File Report BBA 6th semester.pdf
Project File Report BBA 6th semester.pdf
 
Digital Transformation and IT Strategy Toolkit and Templates
Digital Transformation and IT Strategy Toolkit and TemplatesDigital Transformation and IT Strategy Toolkit and Templates
Digital Transformation and IT Strategy Toolkit and Templates
 
Brand Analysis for an artist named Struan
Brand Analysis for an artist named StruanBrand Analysis for an artist named Struan
Brand Analysis for an artist named Struan
 
Maksym Vyshnivetskyi: PMO Quality Management (UA)
Maksym Vyshnivetskyi: PMO Quality Management (UA)Maksym Vyshnivetskyi: PMO Quality Management (UA)
Maksym Vyshnivetskyi: PMO Quality Management (UA)
 
ikea_woodgreen_petscharity_cat-alogue_digital.pdf
ikea_woodgreen_petscharity_cat-alogue_digital.pdfikea_woodgreen_petscharity_cat-alogue_digital.pdf
ikea_woodgreen_petscharity_cat-alogue_digital.pdf
 
ModelingMarketingStrategiesMKS.CollumbiaUniversitypdf
ModelingMarketingStrategiesMKS.CollumbiaUniversitypdfModelingMarketingStrategiesMKS.CollumbiaUniversitypdf
ModelingMarketingStrategiesMKS.CollumbiaUniversitypdf
 
Buy Verified PayPal Account | Buy Google 5 Star Reviews
Buy Verified PayPal Account | Buy Google 5 Star ReviewsBuy Verified PayPal Account | Buy Google 5 Star Reviews
Buy Verified PayPal Account | Buy Google 5 Star Reviews
 
The Influence of Marketing Strategy and Market Competition on Business Perfor...
The Influence of Marketing Strategy and Market Competition on Business Perfor...The Influence of Marketing Strategy and Market Competition on Business Perfor...
The Influence of Marketing Strategy and Market Competition on Business Perfor...
 
Skye Residences | Extended Stay Residences Near Toronto Airport
Skye Residences | Extended Stay Residences Near Toronto AirportSkye Residences | Extended Stay Residences Near Toronto Airport
Skye Residences | Extended Stay Residences Near Toronto Airport
 
ikea_woodgreen_petscharity_dog-alogue_digital.pdf
ikea_woodgreen_petscharity_dog-alogue_digital.pdfikea_woodgreen_petscharity_dog-alogue_digital.pdf
ikea_woodgreen_petscharity_dog-alogue_digital.pdf
 
Cree_Rey_BrandIdentityKit.PDF_PersonalBd
Cree_Rey_BrandIdentityKit.PDF_PersonalBdCree_Rey_BrandIdentityKit.PDF_PersonalBd
Cree_Rey_BrandIdentityKit.PDF_PersonalBd
 
Introduction to Amazon company 111111111111
Introduction to Amazon company 111111111111Introduction to Amazon company 111111111111
Introduction to Amazon company 111111111111
 
Putting the SPARK into Virtual Training.pptx
Putting the SPARK into Virtual Training.pptxPutting the SPARK into Virtual Training.pptx
Putting the SPARK into Virtual Training.pptx
 
VAT Registration Outlined In UAE: Benefits and Requirements
VAT Registration Outlined In UAE: Benefits and RequirementsVAT Registration Outlined In UAE: Benefits and Requirements
VAT Registration Outlined In UAE: Benefits and Requirements
 
Unveiling the Secrets How Does Generative AI Work.pdf
Unveiling the Secrets How Does Generative AI Work.pdfUnveiling the Secrets How Does Generative AI Work.pdf
Unveiling the Secrets How Does Generative AI Work.pdf
 
20240425_ TJ Communications Credentials_compressed.pdf
20240425_ TJ Communications Credentials_compressed.pdf20240425_ TJ Communications Credentials_compressed.pdf
20240425_ TJ Communications Credentials_compressed.pdf
 
Discover the innovative and creative projects that highlight my journey throu...
Discover the innovative and creative projects that highlight my journey throu...Discover the innovative and creative projects that highlight my journey throu...
Discover the innovative and creative projects that highlight my journey throu...
 
The Parable of the Pipeline a book every new businessman or business student ...
The Parable of the Pipeline a book every new businessman or business student ...The Parable of the Pipeline a book every new businessman or business student ...
The Parable of the Pipeline a book every new businessman or business student ...
 
BeMetals Presentation_May_22_2024 .pdf
BeMetals Presentation_May_22_2024   .pdfBeMetals Presentation_May_22_2024   .pdf
BeMetals Presentation_May_22_2024 .pdf
 
What are the main advantages of using HR recruiter services.pdf
What are the main advantages of using HR recruiter services.pdfWhat are the main advantages of using HR recruiter services.pdf
What are the main advantages of using HR recruiter services.pdf
 

ruby on rails development company in india

  • 2. What is Ruby on Rails ? ● Ruby on Rails is a web application framework written in Ruby, a dynamic programming language. ● Ruby on Rails uses the MVC (Model-View-Controller) architecture pattern to organize application programming. ● Ruby on Rails is a web application framework written in Ruby, a dynamic programming language. ● Ruby on Rails uses the MVC (Model-View-Controller) architecture pattern to organize application programming.
  • 3. Ruby on Rails Features Rails is packed with features that make you more productive, with many of the following features building on one other. ● Meta programming: ● Active Record ● Convention over configuration ● Scaffolding ● Built-in testing ● Three environments Rails is packed with features that make you more productive, with many of the following features building on one other. ● Meta programming: ● Active Record ● Convention over configuration ● Scaffolding ● Built-in testing ● Three environments
  • 4. Sample Ruby Code # Output “Name” puts “Bhaskar” # Output “Name” in upprecase puts “Bhaskar”.upcase # Output “Name” 10 times 10.times do puts “Bhaskar”.upcase end
  • 5. Sample Ruby Code: Class Class Employee: defining three attributes for a Employee; name, age, position class Employee # must be capitalized attr_accessor :name, :age, :position # The initialize method is the constructor def initialize(name, age, position) @name = name @age = type @position = color end
  • 6. New Employee Creating an instance of the Employee class: a = Employee.new(“JAY", “23", “Test Engineer") b = Employee.new(“SAM", “24", “Test Engineer")
  • 7. Meth od To be able to describe employees, we add a method to the employee class: def describe @name + " is of " + @age + " years" +" working as " + @position+ ".n" end
  • 8. Calling Method To get the description of Employee, we can call Employee with the describe method attached : emp= a.describe puts emp Or: puts a.describe
  • 9. Rails implements the model- viewcontroller (MVC) architecture.
  • 10. Model View Contoller (MVC) ● The MVC design pattern separates the component parts of an application ● MVC pattern allows rapid change and evolution of the user interface and controller separate from the data model
  • 11. Mod el Contains the data of the application ● Transient ● Stored (eg Database) Enforces "business" rules of the application ● Attributes ● Work flow
  • 12. Vie w ● Provides the user interface ● Dynamic content rendered through templates Three major types ● Ruby code in erb (embedded ruby) templates ● xml.builder templates ● rjs templates (for javascript, and thus ajax)
  • 13. Controll er ● Perform the bulk of the heavy lifting ● Handles web requests ● Maintains session state ● Performs caching ● Manages helper modules
  • 14. Creating a Simple Application Requirements ● Ruby ● RubyGems ● Rails ● SQlite, PostGres or MySQL
  • 15. Creating a Simple Application Requirements ● Ruby ● RubyGems ● Rails ● SQlite, PostGres or MySQL
  • 16. Creating a Simple Application Convention over configuration ● Most Web development frameworks for .NET or Java forces to write pages of configuration code, instead Rails doesn't need much configuration.The total configuration code can be reduced by a factor of five or more over similar Java frameworks just by following common conventions. ● Naming your data model class with the same name as the corresponding database table ● ‘id’ as the primary key name.