80 likes | 451 Views
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 . Rails is a web framework built on Ruby, hence the name Ruby on Rails
E N D
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. Rails is a web framework built on Ruby, hence the name Ruby on Rails Rails powers mainstream high traffic web applications like Twitter, Twitch.tv, GitHub, GroupOn, Hulu, PennyArcade.com, Basecamp, and plenty more. Ruby on Rails
http://railsinstaller.org/ Installation http://railsinstaller.org/ Rails Version Ruby version Gem Version Gem List
http://railsinstaller.org/ Packages bundlerBunch of gem file used to run the application.GITTemporary storage area.
http://railsinstaller.org/ Packages TinytdsA modern simple and fast free tds library for ruby using db-library It converts all sql server datatypes to native ruby objects supporting
http://railsinstaller.org/ Packages Dev KitThe devkit is a toolkit that makes it easy to build and use native c/c++ extensions such as rdiscount and redcloth for ruby on windows.
http://railsinstaller.org/ Creating Application ->rails new blog->rails generate controller home index->rails generate model comment->rake db:create->rake db:migrate
Creating Application rails generate scaffold Post name:stringtitle:stringcontent:text