toholio-nickel-silver-server 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.0.6 2008-09-01
2
+ * 1 minor enhancement:
3
+ * Added toholio-serialport gem as a dependency.
4
+
1
5
  == 0.0.5 2008-08-31
2
6
  * 2 enhancements:
3
7
  * Added gemspec.
data/README.txt CHANGED
@@ -32,7 +32,9 @@ A Ruby server implementing the LocoNetOverTCP protocol allowing remote clients t
32
32
 
33
33
  == REQUIREMENTS:
34
34
 
35
- * ruby-serialport is needed to connect with LocoBuffer-USB hardware http://rubyforge.org/projects/ruby-serialport/
35
+ The toholio-serialport gem is needed to connect with LocoBuffer-USB hardware. http://github.com/toholio/ruby-serialport/
36
+
37
+ If you already have an old version of the ruby-serialport library installed you may need to uninstall it first as it will not load under RubyGems.
36
38
 
37
39
  == INSTALL:
38
40
  If you have not added GitHub as a gem source you will need to do so first:
data/lib/LocoBufferUSB.rb CHANGED
@@ -1,5 +1,4 @@
1
- # Explicitly call Kernel#require because the serialport library explodes with rubygem's implementation.
2
- Kernel.require 'serialport'
1
+ require 'serialport'
3
2
 
4
3
  module NickelSilver
5
4
  module Server
@@ -1,6 +1,6 @@
1
1
  SPEC = Gem::Specification.new do |s|
2
2
  s.name = 'nickel-silver-server'
3
- s.version = '0.0.5'
3
+ s.version = '0.0.6'
4
4
  s.summary = 'LocoNet over TCP server.'
5
5
  s.description = 'LocoNet over TCP server written in ruby.'
6
6
  s.author = 'Tobin Richard'
@@ -23,4 +23,5 @@ SPEC = Gem::Specification.new do |s|
23
23
 
24
24
  s.has_rdoc = true
25
25
  s.extra_rdoc_files = ['History.txt', 'Manifest.txt', 'README.txt']
26
+ s.add_dependency( 'toholio-serialport', ['> 0.0.0'] )
26
27
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: toholio-nickel-silver-server
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobin Richard
@@ -11,8 +11,16 @@ cert_chain: []
11
11
 
12
12
  date: 2008-08-13 00:00:00 -07:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: toholio-serialport
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">"
21
+ - !ruby/object:Gem::Version
22
+ version: 0.0.0
23
+ version:
16
24
  description: LocoNet over TCP server written in ruby.
17
25
  email: tobin.richard@gmail.com
18
26
  executables: []