Project

skype

0.03
No commit activity in last 3 years
No release in over 3 years
Skype Desktop API Ruby wrapper for Mac/Linux.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
~> 5.0
>= 0

Runtime

 Project Readme

Skype

Skype Desktop API Ruby wrapper for Mac/Linux.

Platforms

  • AppleScript + Mac OSX
  • DBus + Linux (testing on Ubuntu 12.04)

Installation

for Mac

% gem install skype
% skype-chat

for Linux

% gem install skype ruby-dbus
% skype-chat

Gemfile

gem "skype"
gem "ruby-dbus" if RUBY_PLATFORM =~ /linux/i

Usage

please read API Reference before use.

load

require 'rubygems'
require 'skype'

Skype.config :app_name => "my_skype_app"

Skype API

send message

Skype.message "USER_NAME", "hello!!"
Skype.exec "MESSAGE USER_NAME hello!!"  # execute API directly

call

Skype.call "USER_NAME"
Skype.exec "CALL USER_NAME"

video call

Skype.exec "VIDEOCALL USER_NAME"

Chat API

find a chat

chat = Skype.chats.find{|c| c.members.include? "shokaishokai" and c.topic =~ /testchat/ }

post message to the chat

chat.post "hello chat!!"

show chat messages

chat.messages.each do |m|
  puts m
end

Call API

call

call = Skype.call "shokaishokai"

check status

puts call.status   # => :routing, :ringing, :inprogress, :finished, :missed, :cancelled
puts call.talking? # => true, false

hangup

call.hangup

Samples

Test

test requires 2 skype accounts.

% gem install bundler
% bundle install
% export SKYPE_FROM=your_skype_name1
% export SKYPE_TO=your_skype_name2
% rake test

Contributing

  1. Fork it
  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 new Pull Request