public
Description: Ruby Tools for Csound
Homepage:
Clone URL: git://github.com/aquabu/rsound.git
rsound / init.rb
100644 7 lines (6 sloc) 0.257 kb
1
2
3
4
5
6
7
# define paths
RSOUND_ROOT = File.expand_path(File.dirname(__FILE__))
RSOUND_BIN = RSOUND_ROOT + "/bin"
require 'rubygems'
# require all the files in the bin directory
Dir.foreach(RSOUND_BIN) {|f| require RSOUND_BIN + "/" + f unless [".",".."].include?(f)}