automotive-ecu 0.1.4 → 0.1.5

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
  SHA256:
3
- metadata.gz: ad8f4f30b32824a37a57939951230876c96e1e6de5d89939fe831eb68b6fd92f
4
- data.tar.gz: 397829925fb22b56f76ddd60820c52b8a89739b2e0dccbfc94ad8fb174acec94
3
+ metadata.gz: b9258d168cddd58d8fe69e82099c079bab80e8c7568f7e6d6e94c64f86f96388
4
+ data.tar.gz: 984ff33b0ff2973a4d0e687241447eef1b263b2c4129d2f14d5daed44be56c79
5
5
  SHA512:
6
- metadata.gz: d51985201cc46cfe5f4cdab85903f71b3018983fd2053752487cc0295587f9788760e97249da7f0fca07c277fd2fd0982c7d7825d414d21c19654c0afe6da4b6
7
- data.tar.gz: 611e2e6b00449f3303f4edf383af46151cce36d340bf6ca67cd932a95739e86865a146f76b5e1b436088c175620db376bef8995fe74c8d61d63d3e6b4dce8623
6
+ metadata.gz: 6418a2fadf25cda97567eaa0fc38a16b81c6fd841b33c0e1f5e85681f0ca38044f8524967b044ea53d6f4e4387af082529c7dbdbbc8ea2cc90c2d4b1fffc83e7
7
+ data.tar.gz: cf113d96b84b68c92acc3ae0d6485565da0db3491648a20448a7c286925d6d891e086d96bf97badd111d3115bc873bf0d07458ed37e70d1b9372f8f8c434803b
@@ -17,8 +17,8 @@ class Ecu
17
17
  str << " EINHEIT_W #{unit.enquote}\n" if unit
18
18
  value.each do |row|
19
19
  str << case row.first
20
- when Numeric then " WERT #{row.join(" ")}\n"
21
- when String then " TEXT #{row.map(&:enquote).join(" ")}\n"
20
+ when Numeric then " WERT #{row.join(" ")}\n"
21
+ when String then " TEXT #{row.map(&:enquote).join(" ")}\n"
22
22
  end
23
23
  end
24
24
  str << "END\n"
@@ -14,8 +14,8 @@ class Ecu
14
14
  str << " EINHEIT_Y #{yunit.enquote}\n" if yunit
15
15
  str << " EINHEIT_W #{unit.enquote}\n" if unit
16
16
  str << case xvalue.first
17
- when Numeric then " ST/X #{xvalue.join(" ")}\n"
18
- when String then " ST_TX/X #{xvalue.map(&:enquote).join(" ")}\n"
17
+ when Numeric then " ST/X #{xvalue.join(" ")}\n"
18
+ when String then " ST_TX/X #{xvalue.map(&:enquote).join(" ")}\n"
19
19
  end
20
20
  yvalue.each_with_index do |entry, idx|
21
21
  str << case entry
@@ -23,8 +23,8 @@ class Ecu
23
23
  when String then " ST_TX/Y #{entry.enquote}\n"
24
24
  end
25
25
  str << case value[idx].first
26
- when Numeric then " WERT #{value[idx].join(" ")}\n"
27
- when String then " TEXT #{value[idx].map(&:enquote).join(" ")}\n"
26
+ when Numeric then " WERT #{value[idx].join(" ")}\n"
27
+ when String then " TEXT #{value[idx].map(&:enquote).join(" ")}\n"
28
28
  end
29
29
  end
30
30
  str << "END\n"
@@ -13,12 +13,12 @@ class Ecu
13
13
  str << " EINHEIT_X #{xunit.enquote}\n" if xunit
14
14
  str << " EINHEIT_W #{unit.enquote}\n" if unit
15
15
  str << case xvalue.first
16
- when Numeric then " ST/X #{xvalue.join(" ")}\n"
17
- when String then " ST_TX/X #{xvalue.map(&:enquote).join(" ")}\n"
16
+ when Numeric then " ST/X #{xvalue.join(" ")}\n"
17
+ when String then " ST_TX/X #{xvalue.map(&:enquote).join(" ")}\n"
18
18
  end
19
19
  str << case value.first
20
- when Numeric then " WERT #{value.join(" ")}\n"
21
- when String then " TEXT #{value.map(&:enquote).join(" ")}\n"
20
+ when Numeric then " WERT #{value.join(" ")}\n"
21
+ when String then " TEXT #{value.map(&:enquote).join(" ")}\n"
22
22
  end
23
23
  str << "END\n"
24
24
  end
@@ -39,9 +39,11 @@ class Ecu
39
39
  end
40
40
 
41
41
  def self.numeric_value(str)
42
- return str.to_f if str.match?(/^\d+\.$/)
43
-
44
- Float(str)
42
+ case str
43
+ in /^\d+$/ then str.to_i
44
+ in /^\d+\.$/ then str.to_f
45
+ else Float(str)
46
+ end
45
47
  end
46
48
 
47
49
  end
@@ -12,8 +12,8 @@ class Ecu
12
12
  str << " FUNKTION #{function}\n" if function
13
13
  str << " EINHEIT_X #{xunit.enquote}\n" if xunit
14
14
  str << case xvalue.first
15
- when Numeric then " ST/X #{xvalue.join(" ")}\n"
16
- when String then " ST_TX/X #{xvalue.map(&:enquote).join(" ")}\n"
15
+ when Numeric then " ST/X #{xvalue.join(" ")}\n"
16
+ when String then " ST_TX/X #{xvalue.map(&:enquote).join(" ")}\n"
17
17
  end
18
18
  str << "END\n"
19
19
  end
data/lib/ecu/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Ecu
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: automotive-ecu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas Mueller