|
Cheat Sheet - what do you need for Ruby on Rails?
Here is a "cheat sheet" of the commands you might use to install Ruby, then Gems, then Rails, then get your first application and server running.
1. Ruby
tar xf ruby-1.9.1-p376.tar.gz
cd ruby-1.9.1-p376/
./configure
make
make install
Check installation:
[root@easterton ruby-1.9.1-p376]# ruby -v
ruby 1.9.1p376 (2009-12-07 revision 26041) [i686-linux]
[root@easterton ruby-1.9.1-p376]#
2. Ruby Gems
RubyGems is a sophisticated package manager for Ruby.
See http://docs.rubygems.org/ ...
Set up gems once you've installed Ruby via:
ruby setup.rb
3. Rails
gem install rails
4. Create a framework for your first application
rails path/to/your/new/application
5. Start the server
cd path/to/your/new/application
ruby script/server
Check installation:
Browse to http://localhost:3000/
This is one of a series of summaries taking you from initial installation of Ruby and Rails through to a complete multitable application: [link] - Installing Ruby and Rails [link] - Hello World, Ruby on Rails Style [link] - What and Why - Model, View, Controller [link] - Multiple views, same model [link] - A form to allow data to be added to the model [link] - Validating data entries for storage in the model [link] - Cleanly viewing model data [link] - Complete sample, including a multiple table model These topics are covered on our Introduction to Rails day - an optional extension of Ruby Programming or Learning to program in Ruby
| (written 2010-01-31, updated 2012-06-23)
5c86
Associated topics are indexed under R203 - Ruby - Installing and setting up Rails [3772] Hello World - Ruby on Rails - a checklist of each step - (2012-06-22) R118 - Ruby Sources and Resources [3783] Load path, load and require in Ruby, and a change from 1.8 to 1.9 - (2012-06-24) [3622] Loading Ruby classes - where does Ruby look? - (2012-02-24) [3435] Sorta sorting a hash, and what if an exception is NOT thrown - Ruby - (2011-09-12) [3426] Automed web site testing scripted in Ruby using watir-webdriver - (2011-09-09) [2931] Syncronise - software, trains, and buses. Please! - (2010-08-22) [2621] Ruby collections and strings - some new examples - (2010-02-03) [550] 2006 - Making business a pleasure - (2006-01-01)
Some other Articles
Neatly formatting results into a tableConstants in RubyThe Model, View, Controller architecture (MVC) - what, why and how.Sunday Evening, City of LondonCheat Sheet - what do you need for Ruby on Rails?Scope of variables - important to Ruby on RailsSearch and replace in Ruby - Ruby Regular ExpressionsAnswers on Ruby on RailsSorting arrays and hashes in RubyRuby on Rails - a sample application to teach you how
|
4084 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82 at 50 posts per page
This is a page archived from The Horse's Mouth at
http://www.wellho.net/horse/ -
the diary and writings of Graham Ellis.
Every attempt was made to provide current information at the time the
page was written, but things do move forward in our business - new software
releases, price changes, new techniques. Please check back via
our main site for current courses,
prices, versions, etc - any mention of a price in "The Horse's Mouth"
cannot be taken as an offer to supply at that price.
Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).
|
|