0.0
No commit activity in last 3 years
No release in over 3 years
Ruby wrapper for the untappd API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 2.9.0
~> 1.6.2

Runtime

~> 1.2.0
~> 0.7.4
 Project Readme

untappd-api¶ ↑

A simple Ruby wrapper for accessing the Untappd API.

For more information, see untappd.com/api/dashboard.

Usage¶ ↑

Each method returns a Hashie::Mash representing the response.

Example:¶ ↑

require 'untappd-api'

Untappd.configure do |config|
  config.application_key = "YOUR_API_KEY")
  config.username = "your_username"       # Some API calls require a signed in user
  config.password = "your_password"       # Most API methods do not require a user
end

Untappd.beer(1234)
Untappd.user(user: 'gambrinus') # Returns the signed in user if no :user option passed

# You can change the signed in user after initial configuration
Untappd.username = "another_user"
Untappd.password = "that_guys_password"

All methods are documented in the lib/untappd/client directory.