Sha256: 2c01cceccdf6cd6c7a3608ac2fc07bb0240ae68f71e0a3b08174b46cace5621b
Contents?: true
Size: 1.87 KB
Versions: 3
Compression:
Stored size: 1.87 KB
Contents
# CoderWally [![Gem Version](https://badge.fury.io/rb/coder_wally.svg)](http://badge.fury.io/rb/coder_wally) [![Build Status](https://travis-ci.org/gregstewart/coder_wally.svg?branch=master)](https://travis-ci.org/gregstewart/coder_wally) [![Coverage Status](https://coveralls.io/repos/gregstewart/coder_wally/badge.svg)](https://coveralls.io/r/gregstewart/coder_wally) [![Code Climate](https://codeclimate.com/github/gregstewart/coder_wally/badges/gpa.svg)](https://codeclimate.com/github/gregstewart/coder_wally) [![Dependency Status](https://gemnasium.com/gregstewart/coder_wally.svg)](https://gemnasium.com/gregstewart/coder_wally) [![Inline docs](https://inch-ci.org/github/gregstewart/coder_wally.svg?branch=master)](https://inch-ci.org/github/gregstewart/coder_wally) A very very simple Gem to fetch user badges from Coder Wall ## Installation Add this line to your application's Gemfile: ```ruby gem 'coder_wally' ``` And then execute: $ bundle Or install it yourself as: $ gem install coder_wally ## Usage After installing the Gem, you can for now you can invoke it (remember to replace <username> with you a valid username) from the command line using: ruby -Ilib bin/coder_wally <username> In order to get a user's badges, you do this: client = CoderWally::Client.new client.get_badges_for <username> In order to get a user's details, you do this: client = CoderWally::Client.new client.get_details_for <username> In order to get everything (for now user and badges), you do this: client = CoderWally::Client.new client.get_everything_for <username> ## Contributing 1. Fork it ( https://github.com/gregstewart/coder_wally/fork ) 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create a new Pull Request
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
coder_wally-0.1.0 | README.md |
coder_wally-0.0.7 | README.md |
coder_wally-0.0.6 | README.md |