Rubygems
Posted: Wed Dec 21, 2011 4:49 pm
Hi,
any chances to add rubygems support?
Thank You
Sal
any chances to add rubygems support?
Thank You
Sal
DSP Robotics and FlowStone Graphical Programming Software Support and Forums
https://dsprobotics.com/support/
Code: Select all
gem install mysql
gem install sqlite3-ruby
gem list
Have you tried to install the gems manually?sal wrote:How do I accomplish this ?Code: Select all
gem install mysql
gem install sqlite3-ruby
gem list
Code: Select all
require'socket'
#Socket.ip_address_list
Addrinfo.udp("192.168.0.2", 10001).bind {|s|
p s.recv(10) #=> "hello"
}Code: Select all
getForegroundWindow = Win32API.new('user32', 'GetForegroundWindow', 'V', 'L')
window_handle = getForegroundWindow.Call()
getWindowText = Win32API.new('user32', 'GetWindowText', 'LP', 'I')
title_buffer = ' ' * 512
getWindowText.Call(window_handle, title_buffer,512)
title_bufferCode: Select all
getForegroundWindow = Win32API.new('user32', 'GetForegroundWindow', 'V', 'L')
window_handle = getForegroundWindow.Call()
getWindowText = Win32API.new('user32', 'GetWindowText', 'LP', 'I')
title_buffer = ' ' * 512
getWindowText.Call(window_handle, title_buffer)
title_buffer