import_remotecontrol 0.4.1 → 0.4.2
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.
- checksums.yaml +8 -8
- data/lib/get_code_list.rb +4 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZDNiNzE5MjAxYjAwZDVhNTdkZDVkNWU0MmZlNzQ0OGE0NDJhZTQ1Mg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZDY0ZmMxY2RjZDJmNWRmYThiMWY4ZmZkMDhmM2Q5ZmY2NTA3YTllMg==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZDM0M2VlODBiNDgxNmE1YmE4ZTIxZWEzMjBhMzcyNDczYTBlZTk1ZDBmZjQ4
|
|
10
|
+
M2RhMzQ3YzRmODI5OWUxYzE1ZjlkMDdiZWQ2N2NjZDNmYzlmOWYzY2E5OTQ0
|
|
11
|
+
ZTIyNTg4MWMzYzYyOGZmMTM0MGM4Y2U0NmJlNjQ5ZGE4ZTE3YWQ=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZjE5YjdkYmQ2ZGE2NDliMGNmYjhlMWMxZTkyNThjZWE2ZjA5NjI2MmFiNTY5
|
|
14
|
+
YmQ2NDZkYjJlZDdiNjQ0NjAyYzMxNjAwYzUxOGIxMmFlODY5NDNkMGUyYzgz
|
|
15
|
+
ZTJjZjA4ZGM1M2I3OTA0NWI3NWFmNDMyN2EzNjlkOTNhYWU2MGE=
|
data/lib/get_code_list.rb
CHANGED
|
@@ -99,6 +99,8 @@ module GetCodeList
|
|
|
99
99
|
case code[PROTOCOLNAME]
|
|
100
100
|
when "EXT_NEC"
|
|
101
101
|
ret = changHongExtNec(DEFAULT_PROTOCOL[code[PROTOCOLNAME]],code[CODE])
|
|
102
|
+
else
|
|
103
|
+
ret = default(code)
|
|
102
104
|
end
|
|
103
105
|
ret
|
|
104
106
|
end
|
|
@@ -108,6 +110,8 @@ module GetCodeList
|
|
|
108
110
|
case code[PROTOCOLNAME]
|
|
109
111
|
when "CUT_NEC"
|
|
110
112
|
ret = chuangWeiCutNec(DEFAULT_PROTOCOL[code[PROTOCOLNAME]],code[CODE])
|
|
113
|
+
else
|
|
114
|
+
ret = default(code)
|
|
111
115
|
end
|
|
112
116
|
ret
|
|
113
117
|
end
|