views:

13

answers:

1

Hello all,

I have made a module named

module ConstantModelName
 AIRPORT =  "Airport"
end

It contains all the constant values used in my application.
So where should i place this module in my application.

currently i placed it in lib folder in my app.

Give your valuable comments.

Thanks

+2  A: 

lib folder is the correct place for it

ritesh choudhary