Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

maca-rosc

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

maca-rosc

  • 0.0.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

= rosc - OpenSound Control for Ruby == Synopsis

require 'osc'

Host = 'localhost'
Port = 5000

s = OSC::UDPServer.new
s.bind Host, Port

c = OSC::UDPSocket.new
m = OSC::Message.new('/foo', 'fi', Math::PI, 42)
c.send m, 0, Host, Port

s.add_method '/f*', 'fi' do |msg|
  domain, port, host, ip = msg.source
  puts "#{msg.address} -> #{msg.args.inspect} from #{host}:#{port}"
end
Thread.new do
  s.serve
end
sleep 5

#=> /foo -> [3.14159274101257, 42] from localhost:50843

== Requirements

  • Ruby

== Installation

sudo ruby setup.rb

== Details See the OSC home page[1], especially the "State of the Art" paper (for an overview) and the specification. This library makes OSC easy, but you will still need to understand OSC concepts and limitations.

The important classes are Message, Bundle, UDPSocket, and UDPServer. If you want to make your own server on a different transport (e.g. TCP or UNIX sockets, which are still on the TODO list), you will want to use the Server mixin.

Please read the AUTHORS file for credits and see the TODO list for planned enhancements.

  1. http://www.cnmat.berkeley.edu/OpenSoundControl

== Examples Send me your interesting examples and I'll include them.

== License Copyright (C) 2007 Hans Fugal and Tadayoshi Funaba

Distributed under Ruby's license. See the LICENSE file.

FAQs

Package last updated on 11 Aug 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc