tem_ruby 0.11.6 → 0.11.7

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ v0.11.7. Fixed edge case in SEClosure execution exception handling.
2
+
1
3
  v0.11.6. Firmware uploading logic, and the new tem_upload_fw binary.
2
4
 
3
5
  v0.11.5. ATR forwarding logic in tem_proxy, for smartcard API 0.4.2.
@@ -1,4 +1,4 @@
1
- # raised when executing a SEC
1
+ # Raised when executing a SEC.
2
2
  class Tem::SecExecError < StandardError
3
3
  attr_reader :line_info
4
4
  attr_reader :buffer_state, :key_state
data/lib/tem/secpack.rb CHANGED
@@ -102,7 +102,7 @@ class Tem::SecPack
102
102
  # offending instruction has been read, so assume offending_ip < ip.
103
103
  return info if addr >= info[0]
104
104
  end
105
- return info.first
105
+ return @lines.first
106
106
  end
107
107
 
108
108
  def label_info_for_addr(addr)
data/tem_ruby.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{tem_ruby}
5
- s.version = "0.11.6"
5
+ s.version = "0.11.7"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Victor Costan"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tem_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.6
4
+ version: 0.11.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Victor Costan