Difference between revisions of "Ruby"

From Script | Spoken-Tutorial
Jump to: navigation, search
(Intermediate level)
Line 98: Line 98:
  
 
==Intermediate level==   
 
==Intermediate level==   
#Looping Statements
+
#for and each Looping Statements
#*Loops
+
#*for & each loops in Ruby
#**Understanding the flow of loop
+
#*Meaning of the term “loop”
#*Syntax for
+
#*Different kinds of loop#**while loop
#**while loop
+
#*Syntax of “for” loop
#**until
+
#*Example implementation of “for” loop
#**unless
+
#*Syntax of “each” loop
#* Examples based on this loops
+
#*Example implementation of “each” loop
#Looping Methods
+
#*“for” and “each” loop implementation with inclusive and exclusive ranges
#*Syntax for
+
 
#**for loop
+
#while and until Looping Statements
#**times method
+
#*while & until loops in Ruby
#**upto method
+
#*Usage of while loop with an example
#**downto method
+
#*Usage of until loop with an example
#*Examples based on the above methods
+
#*Usage of redo construct with an example
#Creating Strings in Ruby
+
#*Usage of break with an example
#*What is string
+
 
#**Learning to create and manipulate the strings
+
#Object Oriented Concept in Ruby
#*Performing operation on string like
+
#*Object Oriented Concept in Ruby
#**String length
+
#*Classes in Ruby
#**String concatenation
+
#*How to create objects
#**String Comparison
+
#*Different ways of defining methods in Ruby
#**String Replacement & substitution
+
#**Using ? and = to define meaningful methods
#**String conversion to
+
#*Example implementation of each of the above
#***Array
+
 
#***Uppercase
+
#Object Oriented Programming Methods
#***Other object type
+
#*Methods in Ruby
#Collections in Ruby
+
#*What are
#*Array
+
#**instance methods
#**What is an array
+
#**class methods
#**Creating a new  array
+
#**accessor methods
#**Iterating the array using each loop
+
#*Example implementation of each of the above
#**Operation on array like sorting, reversing
+
#*Difference between them
#*Hashes
+
 
#**What is hash
+
#**Difference between hash and array
+
#**Creating and accessing the hash
+
 
==Advanced level==   
 
==Advanced level==   
 
#Ruby Object Oriented Programming
 
#Ruby Object Oriented Programming

Revision as of 12:43, 11 October 2021

Introduction to Ruby

Ruby has been described as an absolutely pure object-oriented scripting language and a genuine attempt to combine the best of everything in the scripting world.Its creator, Yukihiro “matz” Matsumoto, blended parts of his favorite languages (Perl, Smalltalk, Eiffel, Ada, and Lisp) to form a new language that balanced functional programming with imperative programming.Ruby is written in C, and it was designed with Perl and Python capabilities in mind.

Ruby supports multiple programming paradigms including functional, object oriented, imperative and reflective. It also has a dynamic type system and automatic memory management.It's consistency and it's object model make it easy to use. The syntax is simple, clean, and readable, with an expressiveness that gives your code a natural flow.

Ruby is also a great general purpose language. It can be used to write scripts and can be also used to create full scale, standalone GUI based applications.It is also great for serving web pages, generating dynamic web page content and excels at database access tasks.

Being an interpreted language means that Ruby is portable. Once an application has been developed in Ruby it will run equally well on Ruby supported platforms such as Linux, UNIX, Windows and MacOS X.

Learners: UG/PG CSE/IT/CS students to learn industry level programming.

Basic Level

  1. Hello Ruby
    • Introduction to Ruby
      • What is Ruby?
      • Features
      • Ruby gems
      • Help on ruby
    • Installation
      • Installation of ruby 1.9 through Ubuntu Software Centre
      • Other methods to install ruby
        • Rvm (ruby version manager)
        • Rbenv
    • Running ruby code
      • Three ways to execute ruby code
        • Interactive ruby
        • As a file
        • From commandline
      • Example :Hello World
    • Commenting in Ruby
      • How to add comments
        • single line comments
        • multiple line or block comments
    • Difference between Puts and Print in ruby
      • Explaining the difference by using example
  2. Variables in Ruby
    • Introduction
      • Ruby and variable Dynamic typing
      • Declaring a variable
      • Changing variable type
      • Converting the var value i.e to float,string,binary etc
    • Scope of Variables
      • What is variable scope
      • Types of variables
        • Global variable
        • local variable
        • class variable
        • instance variable
        • constant variable
  3. Ruby Methods
    • What is method
      • Working with methods
      • Declaring and Calling a method
    • Passing arguments to a method
      • Explaining the arguments and syntax with example.
    • Passing value to a method
      • Explaining the syntax with example.
    • Returning value from a method
      • Explaining the syntax with example
  4. Arithmetic & Relational Operators in Ruby
    • Arithmetic Operators
      • Addition
      • Subtraction
      • Multiplication
      • Division
      • Modulus
      • Exponent
    • Precedence of operators
    • Relational Operators
      • Double equal to ==
      • Not equal to !=
      • Less than <
      • Greater than >
      • Less than or equal to >=
      • Greater than or equal to >=
      • Combined comparison <=>
  5. Logical & other operators
    • Logical operator
      • And &&
      • Or ||
      • Not !
    • Parallel assignment
    • Range operators
      • Inclusive Operator(..)
      • Exclusive operator (...)
  6. Control Statements in Ruby
    • What are control statements
    • Syntax for
      • if statement
      • if..else statement
      • if..elsif statement
      • Examples on it
    • Ternary Operator
    • Syntax for case statement and example on it
    • Comparison between if..elsif and case statement

Intermediate level

  1. for and each Looping Statements
    • for & each loops in Ruby
    • Meaning of the term “loop”
    • Different kinds of loop#**while loop
    • Syntax of “for” loop
    • Example implementation of “for” loop
    • Syntax of “each” loop
    • Example implementation of “each” loop
    • “for” and “each” loop implementation with inclusive and exclusive ranges
  1. while and until Looping Statements
    • while & until loops in Ruby
    • Usage of while loop with an example
    • Usage of until loop with an example
    • Usage of redo construct with an example
    • Usage of break with an example
  1. Object Oriented Concept in Ruby
    • Object Oriented Concept in Ruby
    • Classes in Ruby
    • How to create objects
    • Different ways of defining methods in Ruby
      • Using ? and = to define meaningful methods
    • Example implementation of each of the above
  1. Object Oriented Programming Methods
    • Methods in Ruby
    • What are
      • instance methods
      • class methods
      • accessor methods
    • Example implementation of each of the above
    • Difference between them

Advanced level

  1. Ruby Object Oriented Programming
    • Class
      • What is Class
      • What is Object
      • Defining Ruby Class
      • Creating Object from Class
    • Variables
      • Class Variable
      • Instance Variable
    • Methods
      • Instance Methods
      • Accessor Methods
    • Access Control
      • Explaining the access specifier
        • public
        • private
        • protected
  2. Class Inheritance & Duck typing
    • Introduction
      • What is inheritance
      • Superclass & subclass
      • Type of inheritance
    • Single Inheritance
    • Mixin in ruby
      • Implementing multiple inheritance using module
    • Duck typing
      • What is duck typing
      • Example
  3. Files in Ruby
    • Creating files
    • Reading and Writing files
    • Opening an existing file
    • Delete and rename files
  4. Exception Handling
    • Introduction
      • What is exception
      • Exception class
      • User Defined Exception
    • Raising Exception
    • Rescuing Exception
    • Catch and throw

Contributors and Content Editors

Afrin, PoojaMoolya, Pratham920