smartcard 0.4.7 → 0.4.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.
- data/CHANGELOG +2 -0
 - data/Rakefile +2 -0
 - data/smartcard.gemspec +8 -2
 - metadata +28 -8
 
    
        data/CHANGELOG
    CHANGED
    
    
    
        data/Rakefile
    CHANGED
    
    | 
         @@ -10,6 +10,8 @@ Echoe.new('smartcard') do |p| 
     | 
|
| 
       10 
10 
     | 
    
         
             
              p.summary = 'Interface with ISO 7816 smart cards.'
         
     | 
| 
       11 
11 
     | 
    
         
             
              p.url = 'http://www.costan.us/smartcard'
         
     | 
| 
       12 
12 
     | 
    
         
             
              p.dependencies = ['rubyzip >=0.9.1']
         
     | 
| 
      
 13 
     | 
    
         
            +
              p.development_dependencies = ['echoe >=3.2',
         
     | 
| 
      
 14 
     | 
    
         
            +
                                            'flexmock >=0.8.6']
         
     | 
| 
       13 
15 
     | 
    
         | 
| 
       14 
16 
     | 
    
         
             
              p.need_tar_gz = !Gem.win_platform?
         
     | 
| 
       15 
17 
     | 
    
         
             
              p.need_zip = !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. 
     | 
| 
      
 5 
     | 
    
         
            +
              s.version = "0.4.8"
         
     | 
| 
       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"]
         
     | 
| 
         @@ -18,7 +18,7 @@ Gem::Specification.new do |s| 
     | 
|
| 
       18 
18 
     | 
    
         
             
              s.rubyforge_project = %q{smartcard}
         
     | 
| 
       19 
19 
     | 
    
         
             
              s.rubygems_version = %q{1.3.5}
         
     | 
| 
       20 
20 
     | 
    
         
             
              s.summary = %q{Interface with ISO 7816 smart cards.}
         
     | 
| 
       21 
     | 
    
         
            -
              s.test_files = ["test/ 
     | 
| 
      
 21 
     | 
    
         
            +
              s.test_files = ["test/pcsc/containers_test.rb", "test/pcsc/smoke_test.rb", "test/gp/cap_loader_test.rb", "test/gp/gp_card_mixin_test.rb", "test/gp/des_test.rb", "test/gp/asn1_ber_test.rb", "test/iso/jcop_remote_test.rb", "test/iso/iso_card_mixin_test.rb", "test/iso/iso_exception_test.rb", "test/iso/auto_configurator_test.rb"]
         
     | 
| 
       22 
22 
     | 
    
         | 
| 
       23 
23 
     | 
    
         
             
              if s.respond_to? :specification_version then
         
     | 
| 
       24 
24 
     | 
    
         
             
                current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
         
     | 
| 
         @@ -26,10 +26,16 @@ Gem::Specification.new do |s| 
     | 
|
| 
       26 
26 
     | 
    
         | 
| 
       27 
27 
     | 
    
         
             
                if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
         
     | 
| 
       28 
28 
     | 
    
         
             
                  s.add_runtime_dependency(%q<rubyzip>, [">= 0.9.1"])
         
     | 
| 
      
 29 
     | 
    
         
            +
                  s.add_development_dependency(%q<echoe>, [">= 3.2"])
         
     | 
| 
      
 30 
     | 
    
         
            +
                  s.add_development_dependency(%q<flexmock>, [">= 0.8.6"])
         
     | 
| 
       29 
31 
     | 
    
         
             
                else
         
     | 
| 
       30 
32 
     | 
    
         
             
                  s.add_dependency(%q<rubyzip>, [">= 0.9.1"])
         
     | 
| 
      
 33 
     | 
    
         
            +
                  s.add_dependency(%q<echoe>, [">= 3.2"])
         
     | 
| 
      
 34 
     | 
    
         
            +
                  s.add_dependency(%q<flexmock>, [">= 0.8.6"])
         
     | 
| 
       31 
35 
     | 
    
         
             
                end
         
     | 
| 
       32 
36 
     | 
    
         
             
              else
         
     | 
| 
       33 
37 
     | 
    
         
             
                s.add_dependency(%q<rubyzip>, [">= 0.9.1"])
         
     | 
| 
      
 38 
     | 
    
         
            +
                s.add_dependency(%q<echoe>, [">= 3.2"])
         
     | 
| 
      
 39 
     | 
    
         
            +
                s.add_dependency(%q<flexmock>, [">= 0.8.6"])
         
     | 
| 
       34 
40 
     | 
    
         
             
              end
         
     | 
| 
       35 
41 
     | 
    
         
             
            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. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.4.8
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors: 
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Victor Costan
         
     | 
| 
         @@ -22,6 +22,26 @@ dependencies: 
     | 
|
| 
       22 
22 
     | 
    
         
             
                  - !ruby/object:Gem::Version 
         
     | 
| 
       23 
23 
     | 
    
         
             
                    version: 0.9.1
         
     | 
| 
       24 
24 
     | 
    
         
             
                version: 
         
     | 
| 
      
 25 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 26 
     | 
    
         
            +
              name: echoe
         
     | 
| 
      
 27 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 28 
     | 
    
         
            +
              version_requirement: 
         
     | 
| 
      
 29 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 30 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 31 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 33 
     | 
    
         
            +
                    version: "3.2"
         
     | 
| 
      
 34 
     | 
    
         
            +
                version: 
         
     | 
| 
      
 35 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 36 
     | 
    
         
            +
              name: flexmock
         
     | 
| 
      
 37 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 38 
     | 
    
         
            +
              version_requirement: 
         
     | 
| 
      
 39 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 40 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 41 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 42 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 43 
     | 
    
         
            +
                    version: 0.8.6
         
     | 
| 
      
 44 
     | 
    
         
            +
                version: 
         
     | 
| 
       25 
45 
     | 
    
         
             
            description: Interface with ISO 7816 smart cards.
         
     | 
| 
       26 
46 
     | 
    
         
             
            email: victor@costan.us
         
     | 
| 
       27 
47 
     | 
    
         
             
            executables: []
         
     | 
| 
         @@ -143,13 +163,13 @@ signing_key: 
     | 
|
| 
       143 
163 
     | 
    
         
             
            specification_version: 3
         
     | 
| 
       144 
164 
     | 
    
         
             
            summary: Interface with ISO 7816 smart cards.
         
     | 
| 
       145 
165 
     | 
    
         
             
            test_files: 
         
     | 
| 
       146 
     | 
    
         
            -
            - test/iso/iso_card_mixin_test.rb
         
     | 
| 
       147 
     | 
    
         
            -
            - test/iso/auto_configurator_test.rb
         
     | 
| 
       148 
     | 
    
         
            -
            - test/iso/iso_exception_test.rb
         
     | 
| 
       149 
     | 
    
         
            -
            - test/iso/jcop_remote_test.rb
         
     | 
| 
       150 
     | 
    
         
            -
            - test/pcsc/smoke_test.rb
         
     | 
| 
       151 
166 
     | 
    
         
             
            - test/pcsc/containers_test.rb
         
     | 
| 
       152 
     | 
    
         
            -
            - test/ 
     | 
| 
      
 167 
     | 
    
         
            +
            - test/pcsc/smoke_test.rb
         
     | 
| 
       153 
168 
     | 
    
         
             
            - test/gp/cap_loader_test.rb
         
     | 
| 
       154 
     | 
    
         
            -
            - test/gp/ 
     | 
| 
      
 169 
     | 
    
         
            +
            - test/gp/gp_card_mixin_test.rb
         
     | 
| 
       155 
170 
     | 
    
         
             
            - test/gp/des_test.rb
         
     | 
| 
      
 171 
     | 
    
         
            +
            - test/gp/asn1_ber_test.rb
         
     | 
| 
      
 172 
     | 
    
         
            +
            - test/iso/jcop_remote_test.rb
         
     | 
| 
      
 173 
     | 
    
         
            +
            - test/iso/iso_card_mixin_test.rb
         
     | 
| 
      
 174 
     | 
    
         
            +
            - test/iso/iso_exception_test.rb
         
     | 
| 
      
 175 
     | 
    
         
            +
            - test/iso/auto_configurator_test.rb
         
     |