::NAME = 'gginfrausermanager'
and want to call this variable in another file2.rb with the following code:#file2.rbrequire './file1.rb'include GGp "#{GG::NAME} is called from file1.rb"However when I do a ruby file2.rb I get uninitialized constant GG::NAME.Can you tell me what I'm doing wrong?