I have a variable assigned like this:
cryptsy = Cryptsy::API::Client.new(key, secret)
How can I make this variable accessible through out the application?
Currently its in the Application controller, but I am using GRAPE gem to create a simple api. I need to be able to access the variable in /app/api/v1/bla.rb and other files in the v1 folder.