0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Canonical Launchpad API wrapper - a best-guess launchpadlib port
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.6
>= 0
>= 0
>= 0

Runtime

 Project Readme

Rlaunchpadlib

Build Status Code Climate Coverage Status Gem Version

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

  1. Fork it ( https://github.com/chuckbutler/rlaunchpadlib/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Add tests
  4. Commit your changes (git commit -am 'Add some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create a new Pull Request