Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my app I've integrated the Dropbox API that works with access_token. I don't want access to Dropbox each time that my app add or change a file, so I want to declare a global variable for use in all my controllers, but I don't know how to do that. My snippet is thus:

session_dropbox = DropboxSession.new CONFIG['dropbox']['app_key'], CONFIG['dropbox' ['app_secret']
session_dropbox.set_access_token CONFIG['dropbox']['token_key'], CONFIG['dropbox']['token_secret']
dropbox = DropboxClient.new session_dropbox, :app_folder

And I wish do this:

def
  file = Dropbox.get_file 'file.txt'
  ...
end

I currently use Rails 3

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.