Skip to content

Antti/skyper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Skyper

A ruby gem, implementing Skype public API. https://developer.skype.com/public-api-reference

Currently works only on MacOS X, using AppleScript to connect to Skype. Inspired by rb-skypemac.

Installation

Add this line to your application's Gemfile:

gem 'skyper'

And then execute:

$ bundle

Or install it yourself as:

$ gem install skyper

Usage

I need help writing documentation for this library

###Send a message to the most recent chat:

# Get latest active chat
chat = Skyper::Chat.recent_chats.first
# Send a message to this chat
message = chat.chat_message("Hello there")
# message is a Message object.
message.body
=> "Hello there"
message.body = "Bye"
=> "Bye"

###Send a message to the given user: chat = Skyper::Chat.create(skype_id) chat.chat_message "hello"

###Send sms:

sms = Skyper::SMS.create("+3809901234567") # => "SMS 354924 STATUS COMPOSING"
sms.body = "Hello from Skype" # => "Hello from Skype"
sms.send_sms

Platforms support

It currently support MacOS X 10.6 - 10.8 as a platform. I don't currently have Linux box available to implement DBus (Linux/FreeBSD) support.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

About

Ruby Skype API. Currently supports MacOSX skype.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages