Ruby LDAP Net::LDAP for Ruby is also written as net::ldap. It stands for Lightweight Directory Access Protocol. It is an internet standard…
Ruby Tutorial
-
-
Ruby Break Statement The Ruby break statement is used to terminate a loop. It is mostly used in while loop where value…
-
Ruby Methods Ruby methods prevent us from writing the same code in a program again and again. It is a set of…
-
Ruby Case Statement In Ruby, we use ‘case’ instead of ‘switch’ and ‘when’ instead of ‘case’. The case statement matches one statement…
-
Ruby Modules Ruby module is a collection of methods and constants. A module method may be instance method or module method. Instance…
-
Ruby Class and Object Here, we will learn about Ruby objects and classes. In object-oriented programming language, we design programs using objects…
-
Ruby Thread Thread means lightweight sub-process. It is a separate path of execution. In Ruby, different parts of a program can run…
-
Ruby Comments Ruby comments are non executable lines in a program. These lines are ignored by the interpreter hence they don’t execute…
-
Ruby Data types Data types represents a type of data such as text, string, numbers, etc. There are different data types in…
-
Ruby Date & Time Ruby has Mainly three classes related to date and time in its documentation. Date DateTime Time Date Ruby…