0.0
No commit activity in last 3 years
No release in over 3 years
A light-weight Ruby client for working with the Meetup API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

ruby-meetup2

A light-weight Ruby client for working with the Meetup API.

Requirements

  • Ruby implementation with net/http[s] support

Install

  $ gem install ruby_meetup2

Use with API Key

  > require 'ruby_meetup'
  > RubyMeetup::ApiKeyClient.key = ENV['MEETUP_APIKEY']
  > client = RubyMeetup::ApiKeyClient.new
  > json_s = client.get_path("/2/groups", {:group_id => 390230})
  > # do something with json_s

Use with OAuth 2 access_token

  > client = RubyMeetup::AuthenticatedClient.new
  > client.access_token = user.access_token
  > json_s = client.get_path("/2/groups", {:member_id => user.member_id})
  > # do something with json_s

Credits

ruby-meetup2 was written by:

  • Long On
  • github.com/domicode

License

Copyright (c) 2013 Long On, released under the MIT license