origen 0.6.7 → 0.6.8
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 +4 -4
- data/config/version.rb +1 -1
- data/lib/origen/pins/virtual_pin.rb +1 -8
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e2daf3de9eed406194f48f3fe3b3955edaea1a65
|
|
4
|
+
data.tar.gz: 04a5d37c42ca594238a4264f6a2944c201966343
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ce464539eb86eac9a0593c0757fa0ebf9fc63bede8230e803eb7acef8b07a51ab8b7f8c3a28b581a3e9315738813bcab27a3f00d61a9e72dafdffce41da4971
|
|
7
|
+
data.tar.gz: 94f3df26fd5ca0b4bdd53cf5d4626d100e7a28dc3a497f1bf2cd0aaa6c7a8536ec44beda18f29b4a58c4712bec2e7802fdc476d0807e0c66df88c195effbea4a
|
data/config/version.rb
CHANGED
|
@@ -1,15 +1,8 @@
|
|
|
1
1
|
module Origen
|
|
2
2
|
module Pins
|
|
3
3
|
class VirtualPin < Pin
|
|
4
|
-
# Pin Types
|
|
5
|
-
TYPES = [:virtual_bit, :ate_ch]
|
|
6
|
-
|
|
7
4
|
def type=(value)
|
|
8
|
-
|
|
9
|
-
@type = value
|
|
10
|
-
else
|
|
11
|
-
fail "VirtualPin type '#{value}' must be set to one of the following: #{TYPES.join(', ')}"
|
|
12
|
-
end
|
|
5
|
+
@type = value
|
|
13
6
|
end
|
|
14
7
|
end
|
|
15
8
|
end
|