top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How fast a PHP Developer can learn Ruby on Rails

+1 vote
264 views

I have more than 6 years of experience as PHP Developer, and now I want to learn Ruby on rails. But I am confused how far I can achieve the same. Can you please let me know how long it will take me to learn Ruby on Rails and start a project.

posted Dec 16, 2015 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

Take a couple of days out and work right through a good tutorial such as http://www.railstutorial.org

With your experience you should be able to work quickly through it. Then you will understand the basics of rails and should be able to answer the question yourself.

answer Dec 16, 2015 by Sheetal Chauhan
Similar Questions
0 votes

How can I use ruby on rails input field selector?

This is form:

Jquery
 user_user_name:{
   validators: {
     notEmpty: {
       message: 'The company name is required and cannot be empty'
     }
   }
 },
+1 vote

In my local machine I had input some data into database using SQLite3 . When I deployed it to heroku why I can't get data that i input?

I'm doing like this

-in Gemfile
group :development do
 gem 'sqlite3'
end
group :production do
 gem 'pg'
 gem 'rails_12factor'
end
-bundle install
-heroku login
-git init 
-git add .
-git commit -m "test"
-git create
-git push heroku master
-heroku run rake db:migrate

How can I get some data when I deployed it to heroku? Please help me.

...