Skip to content
This repository has been archived by the owner on Jun 2, 2020. It is now read-only.

Latest commit

 

History

History
19 lines (12 loc) · 332 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 332 Bytes

Ruddy

Basic Win32 DDE client in Ruby.

Installation

$ gem install ruddy

Usage

Connect to a DDE server using the Ruddy::Connection.open method, and call execute on the yielded connection:

require "ruddy"

Ruddy::Connection.open("SERVICE", "topic") do |connection|
  connection.execute("command")
end