Sha256: 80da52a7dd086b895128b185092832769e3df1a929e16b080806c7dfc3a238e0
Contents?: true
Size: 1.27 KB
Versions: 3
Compression:
Stored size: 1.27 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 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.score 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 return number like 30 ## 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
skore-0.0.3 | README.md |
skore-0.0.2 | README.md |
skore-0.0.1.pre.1 | README.md |