Hey there, I'm Wynn!
I'm a front-end designer & developer, CSS & JavaScript framework fanboy Razorback living in Texas.
Featured
-
Recently
Archives
Links
The Changelog – Open Source moves fast. Keep up.- Kohana - The Swift PHP Framework
- TapkuLibrary - Beautiful iPhone UI class library
- Rails 3.0 beta!
- Facebook's HipHop leaves PHPers dancing
- Episode 0.1.2 - Gordon is such a Showoff
- FuseJS aims to improve the JavaScript frameworks you already use
- HotCocoa: MacRuby HotCocoa UI library
- Episode 0.1.1 - John Nunemaker from Ordered List, RailsTips.org, and MongoMapper
- Navvy: Simple database agnostic Ruby background job processor
- neo4jr-social: REST interface for Neo4j






New in the Twitter gem: Lists!
I believe Twitter’s new list feature is big. In fact, I like the idea so much we built our own list of US congressfolk last year. Now, opportunities abound for everyone to share their favorite tweeters in topical lists.
While the Lists API is still in
alphadraft status, I couldn’t resist baking in some of these new features into the Twitter gem from John Nunemaker.What’s new
New in version 0.7.0 is the ability to:
Some examples
# authenticate via basic auth httpauth = Twitter::HTTPAuth.new('username', 'password') client = Twitter::Base.new(httpauth) # get all my lists client.lists('pengwynn') # get list info list = client.list('pengwynn', 'rubyists') pp list.member_count # => 2 # view all the members for a list client.list_members('pengwynn', 'rubyists')So if you’ve got plans of incorporating Twitter lists into your Ruby app,
gem install twitterand get busy!Related posts: