Rlaunchpadlib
Launchpad.net API wrapper for ruby.
Installation
Add this line to your application's Gemfile:
gem 'rlaunchpadlib'
And then execute:
$ bundle
Or install it yourself as:
$ gem install rlaunchpadlib
Usage
person = Rlaunchpadlib::Person.new 'lazypower'
puts person.date_created
person.profile.inspect
You can optionally provide the fast_hash option which ensures that the keys to the Hash objects are symbols instead of strings.
person = Rlaunchpadlib::Person.new 'lazypower', {:fast_hash => true}
puts person.date_created
person.profile.inspect
Caveats
The Gem will initially be Read-only access to your launchpad data.
Roadmap
See: Milestones
Contributing
- Fork it ( https://github.com/chuckbutler/rlaunchpadlib/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Add tests
- Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request