this is the problem:
inside a lib i need to print MONTHNAMES to string
if i try
Date::MONTHNAMES.inspect
result is
=> "[nil, \"January\", \"February\", \"March\", \"April\", \"May\", \"June\", \"July\", \"August\", \"September\", \"October\", \"November\", \"December\"]"
that's good but i don't need the first element, so
month_names = Date::MONTHNAMES
month_names.shift
month_names.inspect
but
ActionView::TemplateError (can't modify frozen array)
there is any workaround? thanks