Sha256: ebf249c9777228742d157dab65108ff48dd8a4161bdbf0f4b8a1dbf7c96247cf

Contents?: true

Size: 1.26 KB

Versions: 1

Compression:

Stored size: 1.26 KB

Contents

# Skore

Skore is a gem that has basic function is to analyze the social score of a user of different platforms like **Klout, Kred and PeerIndex**

## Installation

Add this line to your application's Gemfile:

    gem 'skore'

Or install it yourself as:

    $ gem install skore

## Usage

Using skore is quite simple, just having the right to feed each of the platforms **(klout, kred, & PeerIndex)** and the user that you want to identify keys. 

### Get Klout Score

    user = Skore::KloutSkore.new(API_KEY, TWITTER_USERNAME)
    puts user.score_for_user


return float number like 55.394093

if you want to round the score simply add true method to ```score```

    user = Skore::KloutSkore.new(API_KEY, TWITTER_USERNAME)
    puts user.scorer true


return 55 

### Get Kred Score

    user = Skore::Kred.new(APP_ID, APP_KEY, TWITTER_USERNAME)
    puts user.score  

return number like 777 


### Get PeerIndex Score 

    user = Skore::PeerIndex.new(API_KEY, TWITTER_USERNAME)
    puts user.score


## Contributing

1. Fork it ( https://github.com/kreattiewe/skore/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

1 entries across 1 versions & 1 rubygems

Version Path
skore-0.0.1 README.md