I'm using this gem to access google docs in my app.
https://github.com/gimite/google-drive-ruby
I login to my google account like this -
session = GoogleDrive.login("username@gmail.com", "mypassword")
This gem is then stored in my tasks folder and deployed with my app to heroku.
Is this safe? Should I be storing a password in plan text like this.
If not, what are the alternatives?