kiss-tnc 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 99d6c50a0bf885718135a8dc1cb68981f3687e4c
4
- data.tar.gz: 537b7c2326b4178c298a95b2ceb914847f3b89c2
3
+ metadata.gz: 394d48eb1bdb8bda7bc9283a58b8b7ec8d53585b
4
+ data.tar.gz: ce5f3281c95c4d13e740944a3b709715e527cbe6
5
5
  SHA512:
6
- metadata.gz: 98e0c08a289ff4e3a2c7dc3b16d7447ba0ca7a4199d17b0f06c88c16d209723517e61080172b3aaaa493756c529e28fce8a9a2592a9b540f1d5c024f7683bfbd
7
- data.tar.gz: 1f45a81b214692a2e64e1749190bcea353efd8c93ef9599d8c97640dd0e75ca6e169abd3da79f01dc3769ccf0a35010818dbba47628377c1a13e7484891fecc5
6
+ metadata.gz: 768bfa681b99bc095b97499cdf73b73490bd0abee0319710d13af7e57a81785ff09ef260a74476fd826748475ba0e9b538849666676509b970ddb4c9f4594b2a
7
+ data.tar.gz: 1bcf99dd124fdea56a27529e76a0cd706ecf42fed6f9ece186781143242be71a9b702506df4f9a116f84d589c6feebf9f14acca36b2455caf99e5b2c22c2cf1b
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.3
4
+
5
+ * Changed KissSerial so its methods can accept any arguments, used for abstraction purposes.
6
+
3
7
  ## 1.0.2
4
8
 
5
9
  * Fixed a bug where bytes were not written to the serial stream correctly.
@@ -0,0 +1,13 @@
1
+ * Jeffrey Phillips Freeman (WI2ARD) - http://JeffreyFreeman.me
2
+ * Martin Murray (KD8LVZ)
3
+ * Paul McMillan - https://github.com/PaulMcMillan
4
+ * Russ Innes
5
+ * John Hogenmiller (KB3DFZ) - https://github.com/ytjohn
6
+ * Phil Gagnon N1HHG
7
+ * Ben Benesh - https://github.com/bbene
8
+ * Joe Goforth
9
+ * Rick Eason
10
+ * Jay Nugent
11
+ * Pete Loveall (AE5PL)
12
+ * darksidelemm - https://github.com/darksidelemm
13
+ * agmuino - https://github.com/agmuino
@@ -1,3 +1,3 @@
1
1
  module Kiss
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
@@ -120,7 +120,7 @@ module Kiss
120
120
  end
121
121
 
122
122
  public
123
- def close
123
+ def close(*args, **kwargs)
124
124
  end
125
125
 
126
126
  public
@@ -46,7 +46,7 @@ module Kiss
46
46
  end
47
47
 
48
48
  public
49
- def connect(mode_init=nil, **kwargs)
49
+ def connect(mode_init=nil, *args, **kwargs)
50
50
  super
51
51
 
52
52
  @serial = SerialPort.new(@com_port, @baud, @byte_size, @stop_bits, @parity)
@@ -69,7 +69,7 @@ module Kiss
69
69
  end
70
70
 
71
71
  public
72
- def close
72
+ def close(*args, **kwargs)
73
73
  super
74
74
 
75
75
  if @exit_kiss
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kiss-tnc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeffrey Phillips Freeman
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-10-04 00:00:00.000000000 Z
11
+ date: 2016-10-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: abstraction
@@ -103,6 +103,7 @@ extra_rdoc_files: []
103
103
  files:
104
104
  - ".gitignore"
105
105
  - CHANGELOG.md
106
+ - CONTRIBUTORS.md
106
107
  - Gemfile
107
108
  - LICENSE
108
109
  - README.md