I created a simple untappd.rb file under the config/initializers directory of my ruby 1.9.3 rails 3.2.2 app with the following content in it:
Untappd.configure do |config|
config.application_key = ""
config.username = "" # Some API calls require a signed in user
config.password = "" # Most API methods do not require a user
end
I'm sure its something simple I'm missing, any help on how to get it resolved?
I created a simple untappd.rb file under the config/initializers directory of my ruby 1.9.3 rails 3.2.2 app with the following content in it:
Untappd.configure do |config|
config.application_key = ""
config.username = "" # Some API calls require a signed in user
config.password = "" # Most API methods do not require a user
end
I'm sure its something simple I'm missing, any help on how to get it resolved?