Rules for Copying

Since this project has an MIT, one will be allowed to copy the code. However, one must follow this main rule:

The above rule means that you must change any part of the code by physically adding or removing something from it.

This does not include adding a space or a carriage return (enter/return)

The best way to follow the above rule is to add or remove a comment from the code.

Ex.

Before

module Constants 
  NTRY_TO_SYM = { # define entry to symbol (key to value)
    'p' => :PAPER   , 
    'r' => :ROCK    , 
    's' => :SCISSORS 
  } 
  # ..... 

After

module Constants 
  NTRY_TO_SYM = {
    'p' => :PAPER   , 
    'r' => :ROCK    , 
    's' => :SCISSORS 
  } 
  # .....