nickel-silver-server 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +7 -0
- data/lib/LocoNetServer.rb +2 -2
- data/lib/nickel-silver-server/version.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
|
+
== 0.0.4 2008-03-19
|
|
2
|
+
|
|
3
|
+
* 1 bugfix
|
|
4
|
+
* Fixed erroneous example in LocoNetServer.rb
|
|
5
|
+
|
|
1
6
|
== 0.0.3 2008-03-19
|
|
7
|
+
|
|
2
8
|
* 1 minor enhancement:
|
|
3
9
|
* Tidy before first 'public' release
|
|
4
10
|
|
|
5
11
|
== 0.0.2 2008-03-19
|
|
12
|
+
|
|
6
13
|
* 1 bugfix
|
|
7
14
|
* Correctly load interface and server files when gem is 'require'd
|
|
8
15
|
|
data/lib/LocoNetServer.rb
CHANGED
|
@@ -23,11 +23,11 @@ module NickelSilver
|
|
|
23
23
|
# require 'nickel-silver-server'
|
|
24
24
|
#
|
|
25
25
|
# # connect to a LocoBufferUSB on the virtual serial port /dev/tty.serialport
|
|
26
|
-
# interface = LocoBufferUSB.new( '/dev/tty.serialport' )
|
|
26
|
+
# interface = NickelSilver::Server::Interface::LocoBufferUSB.new( '/dev/tty.serialport' )
|
|
27
27
|
#
|
|
28
28
|
# # create a server using the default port (i.e. 5626, 'loco' spelt on a phone keypad)
|
|
29
29
|
# # using our freshly connected LocoBuffer-USB
|
|
30
|
-
# server = LocoNetServer.new( interface )
|
|
30
|
+
# server = NickelSilver::Server::LocoNetServer.new( interface )
|
|
31
31
|
#
|
|
32
32
|
# # start the server
|
|
33
33
|
# server.start
|