Skip to content

Commit e7e5fb3

Browse files
author
Macario Ortega
committed
doc formatting test
1 parent efdd59f commit e7e5fb3

File tree

2 files changed

+18
-17
lines changed

2 files changed

+18
-17
lines changed

README.rdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ thrugh *nix pipes. Similar functionality shouldn't be too dificult to implement
1212

1313
$ [sudo] gem install scruby
1414

15-
Scruby is just a SuperCollider client so SuperCollider must be installed on the system. There's a PPA for installing SC under Ubuntu: https://launchpad.net/~supercollider/+archive/ppa.
15+
Scruby is just a SuperCollider client so SC must be installed on the system. There's a PPA for installing SC under Ubuntu: https://launchpad.net/~supercollider/+archive/ppa.
1616

1717

1818
== Usage

lib/scruby/server.rb

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,22 @@ class Server
2929
# The server is a Ruby representation of scsynth which can be a local binary or a remote
3030
# server already running.
3131
# Server class keeps an array with all the instantiated servers
32-
# Options:
33-
# +host+:
34-
# defaults to 'localhost'
35-
# +port+:
36-
# TCP port defaults to 57111
37-
# +control_buses+
38-
# Number of buses for routing control data defaults to 4096, indices start at 0.
39-
# +audio_buses+
40-
# Number of audio Bus channels for hardware output and input and internal routing, defaults to 128
41-
# +audio_outputs+
42-
# Reserved +buses+ for hardware output, indices available are 0 to +audio_outputs+ - 1 defaults to 8.
43-
# +audio_inputs+
44-
# Reserved +buses+ for hardware input, +audio_outputs+ to (+audio_outputs+ + +audio_inputs+ - 1), defaults to 8.
45-
# +buffers+
46-
# Number of available sample buffers defaults to 1024
32+
#
33+
# Options:
34+
# +host+:
35+
# defaults to 'localhost'
36+
# +port+:
37+
# TCP port defaults to 57111
38+
# +control_buses+
39+
# Number of buses for routing control data defaults to 4096, indices start at 0.
40+
# +audio_buses+
41+
# Number of audio Bus channels for hardware output and input and internal routing, defaults to 128
42+
# +audio_outputs+
43+
# Reserved +buses+ for hardware output, indices available are 0 to +audio_outputs+ - 1 defaults to 8.
44+
# +audio_inputs+
45+
# Reserved +buses+ for hardware input, +audio_outputs+ to (+audio_outputs+ + +audio_inputs+ - 1), defaults to 8.
46+
# +buffers+
47+
# Number of available sample buffers defaults to 1024
4748
def initialize opts = {}
4849
@opts = DEFAULTS.dup.merge opts
4950
@buffers = []
@@ -179,4 +180,4 @@ def []= index
179180

180181
class SCError < StandardError
181182
end
182-
end
183+
end

0 commit comments

Comments
 (0)