Project

rype

0.03
No commit activity in last 3 years
No release in over 3 years
Unofficial Skype Api wrapper
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0

Runtime

>= 0.6
 Project Readme

rype – Ruby library to talk to the Skype API

Description

This library is a simple wrapper for Skype's dbus-based Linux API.

Currently, it has the following capabilities:

  • Get a list of your chats,
  • send chat messages,
  • receive chat messages,
  • use the raw Skype protocol via Rype::Api#invoke and Rype::Api#on_notification. More information about the protocol at developer.skype.com

Installation

In order to work with the rype gem, there are a few requirements:

  • You need to be on Linux
  • You need to have Skype running
  • You need dbus installed (e.g., via apt on Ubuntu)
  • You need the ruby-dbus gem:
  • You may want Xvfb (if you want to run Skype head-less)

Verify your installation

To confirm it's working, start skype and sign in. Then, open an irb session and:

require 'dbus'
bus = DBus::SessionBus.instance
skype_service = bus.service("com.Skype.API")
client_to_skype = skype_service.object('/com/Skype')
client_to_skype.introspect
api = client_to_skype["com.Skype.API"]
api.Invoke("NAME rype")

If everything is set up correctly, Skype will now ask whether "rype" should be allowed to connect.

Usage

There are a few examples in examples/ that should give you an idea of how to use the gem.

Head-less Skype

Say you want to be running an app that connects to Skype on a box that won't have a display attached. For this use case, Xvfb is quite handy:

"Xvfb or X virtual framebuffer is an X11 server that performs all graphical operations in memory, not showing any screen output." (wikipedia)"

In examples/start_skype, there's a shell script that shows how to start Skype and Xvfb.

You can safely ignore warnings about missing fonts, but if they bother you, try:

 sudo aptitude install xfonts-100dpi xfonts-75dpi xfonts-scalable xfonts-cyrillic

If Xvfb won't start at all, more drastic measures may be required:

 sudo apt-get install xserver-xorg-core

small print

This product uses the Skype API but is not endorsed, certified or otherwise approved in any way by Skype.