General discussion
-
CreatorTopic
-
November 2, 2005 at 1:34 am #2190835
Topic is locked -
CreatorTopic
All Comments
-
AuthorReplies
-
-
November 2, 2005 at 2:39 am #3116625
Finding Ruby
by satish_talim · about 16 years, 6 months ago
In reply to Quick Ruby Guide
As mentioned in my previous post, this blog will record my progress of learning Ruby and Ruby On Rails. I remembering reading somewhere that to use Ruby On Rails, one needs to know the Ruby programming language.I started off by making a search for “Ruby Quick Start” on the Google search engine. This returned me a list of around 15 sites but unluckily I could not find anything that could get me
-
November 2, 2005 at 2:39 am #3116626
Ways To Run Ruby
by satish_talim · about 16 years, 6 months ago
In reply to Quick Ruby Guide
What have I found out so far? Definition of RubyRuby Windows InstallerHaving come from a Java background, I thought these series of slides – 10 Things Every Java Programmer Should Know About Ruby, would be useful. I went through them but did not follow much, for now. I shall come back to this later.So how do I get started with Ruby? An online version of the first edition of Programming Ruby –
-
November 2, 2005 at 2:39 am #3116627
Ruby Nuts and Bolts
by satish_talim · about 16 years, 6 months ago
In reply to Quick Ruby Guide
What have I found out so far? Definition of RubyRuby Windows InstallerInteractive Ruby – Open a new DOS window and type irb –simple-prompt A prompt appears as they should not be defined in a method – more of this later). Ruby lets you alter the value of a constant, although this will generate a warning message.More next time.
First Post | Previous | Next
Technorati Tags: Ruby Nuts and
-
November 2, 2005 at 2:39 am #3116628
Text Editors and IDEs for Ruby
by satish_talim · about 16 years, 6 months ago
In reply to Quick Ruby Guide
What have I found out so far? Definition of RubyRuby Windows InstallerInteractive Ruby – Open a new DOS window and type irb –simple-prompt A prompt appears as Run a Ruby program by typing ruby hello.rbLearnt some features of Ruby like comments, naming rules, variables, constants, strings etc.Which text editor should I use for Ruby? In your Ruby installation there is a built-in text editor ‘SciTE’ -
November 2, 2005 at 2:40 am #3116621
Simple Constructs in Ruby
by satish_talim · about 16 years, 6 months ago
In reply to Quick Ruby Guide
What have I found out so far? Definition of RubyRuby Windows InstallerInteractive Ruby – Open a new DOS window and type irb –simple-prompt A prompt appears as
Loops like the while are available. Again, the example below illustrates the same.# Loops
var = 0
while var < 10 puts var.to_s var += 1 end First Post | Previous | Next Technorati Tags: Simple Constructs in Ruby Blogs linking -
November 2, 2005 at 2:40 am #3116622
Some Methods in Ruby
by satish_talim · about 16 years, 6 months ago
In reply to Quick Ruby Guide
What have I found out so far? Definition of RubyRuby Windows InstallerInteractive Ruby – Open a new DOS window and type irb –simple-prompt A prompt appears as Run a Ruby program by typing ruby hello.rbLearnt some features of Ruby like comments, naming rules, variables, constants, strings etc.Various Text Editors/IDEs like SciTE, NotePad2Constructs like the if else and whileToday, we shall explore -
November 2, 2005 at 2:40 am #3116623
Arrays in Ruby
by satish_talim · about 16 years, 6 months ago
In reply to Quick Ruby Guide
What have I found out so far? Definition of RubyRuby Windows InstallerInteractive Ruby – Open a new DOS window and type irb –simple-prompt A prompt appears as Run a Ruby program by typing ruby hello.rbLearnt some features of Ruby like comments, naming rules, variables, constants, strings etc.Various Text Editors/IDEs like SciTE, NotePad2Constructs like the if else and whileSome methods in -
November 8, 2005 at 1:25 pm #3135706
Writing One’s Own Methods in Ruby
by satish_talim · about 16 years, 6 months ago
In reply to Quick Ruby Guide
What have I found out so far? Definition of RubyRuby Windows InstallerInteractive Ruby – Open a new DOS window and type irb –simple-prompt A prompt appears as Run a Ruby program by typing ruby hello.rbLearnt some features of Ruby like comments, naming rules, variables, constants, strings etc.Various Text Editors/IDEs like SciTE, NotePad2Constructs like the if else and whileSome methods in -
November 11, 2005 at 9:50 pm #3118843
Writing One’s Own Class in Ruby
by satish_talim · about 16 years, 6 months ago
In reply to Quick Ruby Guide
What have I found out so far? Definition of RubyRuby Windows InstallerInteractive Ruby – Open a new DOS window and type irb –simple-prompt A prompt appears as Run a Ruby program by typing ruby hello.rbLearnt some features of Ruby like comments, naming rules, variables, constants, strings etc.Various Text Editors/IDEs like SciTE, NotePad2Constructs like the if else and whileSome methods in -
November 11, 2005 at 9:50 pm #3118844
Ruby on Rails
by satish_talim · about 16 years, 6 months ago
In reply to Quick Ruby Guide
What have I found out so far? Definition of RubyRuby Windows InstallerInteractive Ruby – Open a new DOS window and type irb –simple-prompt A prompt appears as Run a Ruby program by typing ruby hello.rbLearnt some features of Ruby like comments, naming rules, variables, constants, strings etc.Various Text Editors/IDEs like SciTE, NotePad2Constructs like the if else and whileSome methods in -
November 13, 2005 at 1:55 am #3118566
Building an application with Ruby on Rails – Controllers
by satish_talim · about 16 years, 6 months ago
In reply to Quick Ruby Guide
What have I found out so far? A simple understanding of Ruby programming languageGetting started with Ruby on RailsIn my previous post, we created the jauth application’s directory structure. Most of our development work will be creating and editing files in the C:\InstantRails\rails_apps\jauth\app subdirectories. The controllers subdirectory is where Rails looks to find controller classes. A
-
-
AuthorReplies