Git Modify Author and Committer
How to change all commits to have the same newly added author and committer? Go to appropriate branch and project directory and run the following command on console. git filter-branch -f --env-...
How to change all commits to have the same newly added author and committer? Go to appropriate branch and project directory and run the following command on console. git filter-branch -f --env-...
Senerio: User may not provide Name when creating profile, so user name is not compulsory But if Name is provided then minimum character should be 3 & max character should be 10 Solutions...
Lambdas and Proc Lambdas and Proc are block executing statement. Lambdas and Proc both are object of Proc. Lambdas and Proc are executed by call(). Lambda declaration x = lambda { p "This is l...
Engines are small applications which provides functionality to their host applications. A Rails application is a engine with Rails::Application class inheriting a lot of behaviour from Rails::Engin...
Pow is zero-config Rack server for Mac OS X. Your application will run on myapp.test without modifying /etc/hosts. Those who use GNU/Linux and installed Ruby and Rack gem Prax is usefull. It is a w...
An array is an ordered collection of elements that can be of any type. Each element in an array is referred to by an index. Array can have objects like integer, string, float, Fixnum, Hash, Symbol....
Ruby uses the case expression with one or more when conditions. After execution it returns one of the when statement or default else case. case gets.chomp when '1' puts "You have entered 1" whe...
Loop is the process in which set of instructions or block of codes are repeated in a specified number of times under certain condition is satisfied. for, while, do while are example of loops. whil...
if Statement in Ruby if, elsif and else block in Ruby controls decision based on the condition to true/false resulting in the different execution of the code. key = 10 if key > 15 puts 'Key ...
About String String holds and manipulates an arbitrary sequence of bytes which is group of characters. String in ruby is defined using single quote and double quote as: strvar = 'this is string' ...