Pretty simple and straight forward to create a new app chetans-mbp-2:~ cgiridhar$ rails new blog create create README.rdoc create Rakefile create config.ru create .gitignore create Gemfile create app create … Continue reading RoR: App Structure and Running the App
Category: Ruby
RoR: Installation
Component Required to be Installed Ruby Rails Gem Database Server (Default installed SQLite) Installation Instructions on Mac Make sure you have appropriate Xcode version and Xcode command Line Tools and brew installed Chetans-MacBook-Pro-2:~ cgiridhar$ brew install ruby ==> Installing dependencies for ruby: readline, libyaml ==> Installing ruby dependency: readline ==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/readline-6.3.6.mavericks.bottle.tar.gz ######################################################################## 100.0% ==> Pouring … Continue reading RoR: Installation
RoR: Introduction
Rails An extremely productive web-application framework. Written in Ruby by David Heinemeier Hansson. An open source Ruby framework for developing database-backed web applications. Code and database schema are the configuration. Full Stack Framework Database-driven web application Model-View-Controller pattern. Layers are built to work seamlessly together.