Each action in the rails console (rails server, rails console, db: migrate, etc.) raises a warning since the last package update:
[fog][WARNING] Unable to load the 'unf' gem. Your AWS strings may not be properly encoded.
I am sure that nothing has changed in the AWS lines that are in my application.rb file:
# Amazon S3 credentials ENV["AWS_ACCESS_KEY_ID"] = "AWS_ACCESS_KEY_ID" ENV["AWS_SECRET_ACCESS_KEY"] = "AWS_SECRET_ACCESS_KEY" ENV["AWS_S3_BUCKET"] = "my-bucket"
I do not have this "non-local" gem in my gemfile. Should I add it?
ruby ruby-on-rails amazon-web-services fog
Arnlen Oct 29 '13 at 18:22 2013-10-29 18:22
source share