smartcard 0.4.2 → 0.4.3

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.
Files changed (4) hide show
  1. data/CHANGELOG +2 -0
  2. data/Rakefile +3 -1
  3. data/smartcard.gemspec +4 -1
  4. metadata +12 -3
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ v0.4.3. Fixed gem manifest to state dependency on rubyzip.
2
+
1
3
  v0.4.2. GlobalPlatform applet instalation.
2
4
 
3
5
  v0.4.1. Workaround ATR resend bug in JCOP simulator 3.2.7.
data/Rakefile CHANGED
@@ -9,11 +9,13 @@ Echoe.new('smartcard') do |p|
9
9
  p.email = 'victor@costan.us'
10
10
  p.summary = 'Interface with ISO 7816 smart cards.'
11
11
  p.url = 'http://www.costan.us/smartcard'
12
+ p.dependencies = ['rubyzip >=0.9.1']
12
13
 
13
14
  p.need_tar_gz = !Gem.win_platform?
14
15
  p.need_zip = !Gem.win_platform?
15
16
  p.clean_pattern += ['ext/**/*.manifest', 'ext/**/*_autogen.h']
16
- p.rdoc_pattern = /^(lib|bin|tasks|ext)|^BUILD|^README|^CHANGELOG|^TODO|^LICENSE|^COPYING$/
17
+ p.rdoc_pattern =
18
+ /^(lib|bin|tasks|ext)|^BUILD|^README|^CHANGELOG|^TODO|^LICENSE|^COPYING$/
17
19
 
18
20
  p.eval = proc do |p|
19
21
  if Gem.win_platform?
data/smartcard.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{smartcard}
5
- s.version = "0.4.2"
5
+ s.version = "0.4.3"
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"]
@@ -25,8 +25,11 @@ Gem::Specification.new do |s|
25
25
  s.specification_version = 3
26
26
 
27
27
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
28
+ s.add_runtime_dependency(%q<rubyzip>, [">= 0.9.1"])
28
29
  else
30
+ s.add_dependency(%q<rubyzip>, [">= 0.9.1"])
29
31
  end
30
32
  else
33
+ s.add_dependency(%q<rubyzip>, [">= 0.9.1"])
31
34
  end
32
35
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smartcard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Victor Costan
@@ -11,8 +11,17 @@ cert_chain: []
11
11
 
12
12
  date: 2009-11-01 01:00:00 -04:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rubyzip
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 0.9.1
24
+ version:
16
25
  description: Interface with ISO 7816 smart cards.
17
26
  email: victor@costan.us
18
27
  executables: []