I\'m getting this warning when I run rspec:
/gems/activesupport-3.1.0/lib/active_support/dependencies.rb:240:in `block in require\': iconv will be deprecated in
To remove this warning...
go to your .rvm directory and find iconv.c
(mine was at ~/.rvm/src/ruby-1.9.3-p125/ext/iconv/iconv.c
)
edit that file are remove or comment out the call to warn_deprecated()
(should be near the bottom)
from that file's directory, run ruby extconf.rb
then make
then make install
Should do the trick