Imagine what you could build if you learned Ruby on Rails…

Learning to build a modern web application is daunting. Ruby on Rails makes it much easier and more fun. It includes everything you need to build fantastic applications, and you can learn it with the support of our large, friendly community.
You’ve probably already used many of the applications that were built with Ruby on Rails: Basecamp, GitHub, Shopify, Airbnb, Twitch, SoundCloud, Hulu, Zendesk, Square, Highrise, Cookpad. Those are just some of the big names, but there are literally hundreds of thousands of applications built with the framework since its release in 2004.
Ruby on Rails is open source software, so not only is it free to use, you can also help make it better. More than 4,500 people already have contributed code to Rails. It’s easier than you think to become one of them.

First of all you need to know ruby language
Because ,


Ruby on Rails is written in the Ruby programming language. If you’re new to Ruby, you’ll need to take Ruby language courses before Rails courses, because otherwise at the next stages, when you face more serious issues, you’ll struggle with the Ruby code. If you want to learn independently, try books and online courses, which are popular today. You can join an online platforms where you can master Ruby and other programming languages including HTML/CSS, JavaScript, Python, and .Net.


Learning Ruby on Rails


After getting to know about Ruby, continue with 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. It allows you to write less code while accomplishing more than many other languages and frameworks. Experienced Rails developers also report that it makes web application development more fun.

Rails is opinionated software. It makes the assumption that there is a "best" way to do things, and it's designed to encourage that way - and in some cases to discourage alternatives. If you learn "The Rails Way" you'll probably discover a tremendous increase in productivity. If you persist in bringing old habits from other languages to your Rails development, and trying to use patterns you learned elsewhere, you may have a less happy experience.


The Rails philosophy includes two major guiding principles:

Don't Repeat Yourself: 
DRY is a principle of software development which states that "Every piece of knowledge must have a single, unambiguous, authoritative representation within a system." By not writing the same information over and over again, our code is more maintainable, more extensible, and less buggy.

Convention Over Configuration: 
Rails has opinions about the best way to do many things in a web application, and defaults to this set of conventions, rather than require that you specify minutiae through endless configuration files.

Comments

Popular posts from this blog