Project

namba

0.0
No commit activity in last 3 years
No release in over 3 years
Ruby wrapper for Namba API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

The Namba Ruby gem

Gem Version Build Status Code Climate Coverage Status Dependency Status Inline docs

A Ruby wrapper for the Namba API. The full API description is available here.

Installation

gem install namba

Or put to your Gemfile

gem "namba"

Usage

require 'namba'

Namba.configure do |config|
  config.username = "your_username"
  config.password = "secret"
  config.locale = :kg
end

n = Namba.new()

Use :net locale if you want to access namba.net API. Default value is :kg

Methods spread on all Namba API

n.get_user_info(name) # returns specific user information
n.get_user_video(name) # returns specific user's video list
n.get_user_photo(name) # returns specific user's photo list
n.get_friends_list(name) # returns specific user's friends list

Eg.:

n.get_user_info("puzanov")

Leave name parameter blank to get information about configured user. Eg.:

n.get_user_info()

Methods dealing with personal stuff only

n.set_status(text) # sets user status with `text`
n.get_events # returns user's friends' events
n.get_new_mail_count # returns count of unread messages
n.get_last_mail # returns list of inbox messages ordered by creation date. 20 messages is maximum

Namba gem's Rails helpers

If you are using namba gem in your Rails app you can use some helpers in your *.erb template:

namba_comments

<%= namba_comments(component_name, component_id) %>

Eg.:

<%= namba_comments("tamasha", 4850) %>

namba_share

<%= namba_share(component_name, component_id) %>

Eg.:

<%= namba_share("kyrnet", 1) %>    

About component_name and component_id read more at Namba Comments docs

Licence

MIT License Copyright (c) 2012-2014 ZERO.ONE

Bitdeli Badge