origen 0.6.7 → 0.6.8

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: d5524389d795a57f92302534b5350ce902a13967
4
- data.tar.gz: bb2943010e3ddf48ba8d6b8ba08a9af2d98b7af5
3
+ metadata.gz: e2daf3de9eed406194f48f3fe3b3955edaea1a65
4
+ data.tar.gz: 04a5d37c42ca594238a4264f6a2944c201966343
5
5
  SHA512:
6
- metadata.gz: 51000c5a32e20f65504744a1bfc668568dbc2de57ffb8d59322e30f94949decec6d55054efd88d0bb7ddc887f4b5ba4a0c362fdd1360c8da3985189d8d4dcca7
7
- data.tar.gz: 93649414847c8fbc8a43ea51c0feacc267e05690047959dd31a4a5099401f1c2ae61c90f1a9d569641be94058c9d33070849000c01293c9bd81aa3063dd6fd25
6
+ metadata.gz: 8ce464539eb86eac9a0593c0757fa0ebf9fc63bede8230e803eb7acef8b07a51ab8b7f8c3a28b581a3e9315738813bcab27a3f00d61a9e72dafdffce41da4971
7
+ data.tar.gz: 94f3df26fd5ca0b4bdd53cf5d4626d100e7a28dc3a497f1bf2cd0aaa6c7a8536ec44beda18f29b4a58c4712bec2e7802fdc476d0807e0c66df88c195effbea4a
@@ -1,7 +1,7 @@
1
1
  module Origen
2
2
  MAJOR = 0
3
3
  MINOR = 6
4
- BUGFIX = 7
4
+ BUGFIX = 8
5
5
  DEV = nil
6
6
 
7
7
  VERSION = [MAJOR, MINOR, BUGFIX].join(".") + (DEV ? ".pre#{DEV}" : '')
@@ -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
- if TYPES.include? value
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: origen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.7
4
+ version: 0.6.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen McGinty