Got

... '[]=': can't modify frozen string (TypeError)

when trying to modify what I thought was a copy of ARGV[0].

Same results for each of

arg = ARGV[ 0 ]
arg_cloned = ARGV[ 0 ].clone
arg_to_s = ARGV[ 0 ].to_s

arg[ 'x' ] = 'y'
arg_cloned[ 'x' ] = 'y'
arg_to_s[ 'x' ] = 'y'
link|improve this question

feedback

2 Answers

up vote 12 down vote accepted

since google took too long to find the right answer ...

needed to do

arg_dup = ARGV[ 0 ].dup
link|improve this answer
2  
Right. Clone copies the object's entire state, including frozen status. Dup copies the meat of the object without those other flags. – Eli Feb 5 '10 at 4:04
quite surprised that .to_s does the same (including frozen)!? – Straff Feb 5 '10 at 10:08
feedback

further info for the interested: http://rubylearning.com/satishtalim/mutable_and_immutable_objects.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.