{"id":18728610,"url":"https://github.com/rubyonworld/skype-ruby","last_synced_at":"2026-04-15T13:32:11.577Z","repository":{"id":174008153,"uuid":"542165914","full_name":"RubyOnWorld/skype-ruby","owner":"RubyOnWorld","description":"Skype Desktop API Ruby wrapper for Mac/Linux.","archived":false,"fork":false,"pushed_at":"2022-09-28T00:32:43.000Z","size":55,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-24T04:46:18.717Z","etag":null,"topics":["api","desktop","linux","mac","ruby","skype"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RubyOnWorld.png","metadata":{"files":{"readme":"README.md","changelog":"History.txt","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-09-27T15:46:46.000Z","updated_at":"2022-09-28T01:36:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"63f07cf7-347c-4617-81e2-9886c28b9300","html_url":"https://github.com/RubyOnWorld/skype-ruby","commit_stats":null,"previous_names":["rubyonworld/skype-ruby"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RubyOnWorld/skype-ruby","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RubyOnWorld%2Fskype-ruby","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RubyOnWorld%2Fskype-ruby/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RubyOnWorld%2Fskype-ruby/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RubyOnWorld%2Fskype-ruby/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RubyOnWorld","download_url":"https://codeload.github.com/RubyOnWorld/skype-ruby/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RubyOnWorld%2Fskype-ruby/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31842863,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T13:28:40.153Z","status":"ssl_error","status_checked_at":"2026-04-15T13:28:29.396Z","response_time":63,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","desktop","linux","mac","ruby","skype"],"created_at":"2024-11-07T14:22:15.014Z","updated_at":"2026-04-15T13:32:11.557Z","avatar_url":"https://github.com/RubyOnWorld.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"Skype\n=====\n[Skype Desktop API](http://dev.skype.com/desktop-api-reference) Ruby wrapper for Mac/Linux.\n\n- https://github.com/shokai/skype-ruby\n- http://rubygems.org/gems/skype\n\n\nPlatforms\n---------\n- AppleScript + Mac OSX\n- DBus + Linux (testing on Ubuntu 12.04)\n\n\nInstallation\n------------\n\nfor Mac\n\n    % gem install skype\n    % skype-chat\n\nfor Linux\n\n    % gem install skype ruby-dbus\n    % skype-chat\n\nGemfile\n```ruby\ngem \"skype\"\ngem \"ruby-dbus\" if RUBY_PLATFORM =~ /linux/i\n```\n\nUsage\n-----\nplease read [API Reference](http://dev.skype.com/desktop-api-reference) before use.\n\n### load\n```ruby\nrequire 'rubygems'\nrequire 'skype'\n\nSkype.config :app_name =\u003e \"my_skype_app\"\n```\n\n### Skype API\n\nsend message\n```ruby\nSkype.message \"USER_NAME\", \"hello!!\"\nSkype.exec \"MESSAGE USER_NAME hello!!\"  # execute API directly\n```\n\ncall\n```ruby\nSkype.call \"USER_NAME\"\nSkype.exec \"CALL USER_NAME\"\n```\n\nvideo call\n```ruby\nSkype.exec \"VIDEOCALL USER_NAME\"\n```\n\n### Chat API\n\nfind a chat\n```ruby\nchat = Skype.chats.find{|c| c.members.include? \"shokaishokai\" and c.topic =~ /testchat/ }\n```\n\npost message to the chat\n```ruby\nchat.post \"hello chat!!\"\n```\n\nshow chat messages\n```ruby\nchat.messages.each do |m|\n  puts m\nend\n```\n\n### Call API\n\ncall\n```ruby\ncall = Skype.call \"shokaishokai\"\n```\n\ncheck status\n```ruby\nputs call.status   # =\u003e :routing, :ringing, :inprogress, :finished, :missed, :cancelled\nputs call.talking? # =\u003e true, false\n```\n\nhangup\n```ruby\ncall.hangup\n```\n\nSamples\n-------\n- https://github.com/shokai/skype-ruby/tree/master/samples\n- https://github.com/shokai/skype-ruby/tree/master/bin\n\n\nTest\n----\ntest requires 2 skype accounts.\n\n    % gem install bundler\n    % bundle install\n    % export SKYPE_FROM=your_skype_name1\n    % export SKYPE_TO=your_skype_name2\n    % rake test\n\n\nContributing\n------------\n1. Fork it\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create new Pull Request\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubyonworld%2Fskype-ruby","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frubyonworld%2Fskype-ruby","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubyonworld%2Fskype-ruby/lists"}