transactd 2.0.0-x86-mswin32-100 → 2.0.1-x86-mswin32-100
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/bin/1.9/transactd.so +0 -0
 - data/bin/2.0/transactd.so +0 -0
 - data/bin/2.1/transactd.so +0 -0
 - data/bin/common/tdclcpp_vc100_32mr_2_0.dll +0 -0
 - data/build/tdclrb/gem/Makefile.win32-VS +2 -0
 - data/transactd.gemspec +12 -4
 - metadata +3 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA1:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 66308a55c975a30f2344a904ecdf5ceac841f9ab
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: f9d94efde2473dcdf6d713af0b604a71d571817f
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: a9becd5097d366bb47dec5d8824cee2e9e6198a3aa6dec707c8272d8a60a1d3f5dae7dd8a3ee1da2a26e6cf3112cc47e2bd7734dce1af92d2578bc308ea40ecc
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: ec3545e219c049c0b95b6427b7249f39dec388480ef2410514f8b806802261039f168573fe345ddab674519e0834e7a17b7c91fb2e477d65f2dee3a51b043a17
         
     | 
    
        data/bin/1.9/transactd.so
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/bin/2.0/transactd.so
    CHANGED
    
    | 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
    
        data/transactd.gemspec
    CHANGED
    
    | 
         @@ -27,7 +27,7 @@ spec_build = Gem::Specification.new do |s| 
     | 
|
| 
       27 
27 
     | 
    
         
             
              s.homepage    = 'http://www.bizstation.jp/ja/transactd'
         
     | 
| 
       28 
28 
     | 
    
         
             
              s.license     = 'GPL v2'
         
     | 
| 
       29 
29 
     | 
    
         | 
| 
       30 
     | 
    
         
            -
              # read version from tdapcapi.h
         
     | 
| 
      
 30 
     | 
    
         
            +
              # read major/minor version from tdapcapi.h
         
     | 
| 
       31 
31 
     | 
    
         
             
              verfile = 'source/bzs/db/protocol/tdap/tdapcapi.h'
         
     | 
| 
       32 
32 
     | 
    
         
             
              unless File.exist?(verfile)
         
     | 
| 
       33 
33 
     | 
    
         
             
                raise 'Can not found ' + verfile
         
     | 
| 
         @@ -42,13 +42,21 @@ spec_build = Gem::Specification.new do |s| 
     | 
|
| 
       42 
42 
     | 
    
         
             
                }
         
     | 
| 
       43 
43 
     | 
    
         
             
              }
         
     | 
| 
       44 
44 
     | 
    
         
             
              unless (versions.has_key?(:CPP_INTERFACE_VER_MAJOR) &&
         
     | 
| 
       45 
     | 
    
         
            -
                      versions.has_key?(:CPP_INTERFACE_VER_MINOR) 
     | 
| 
       46 
     | 
    
         
            -
                      versions.has_key?(:CPP_INTERFACE_VER_RELEASE))
         
     | 
| 
      
 45 
     | 
    
         
            +
                      versions.has_key?(:CPP_INTERFACE_VER_MINOR))
         
     | 
| 
       47 
46 
     | 
    
         
             
                raise 'Can not read versions from ' + verfile
         
     | 
| 
       48 
47 
     | 
    
         
             
              end
         
     | 
| 
      
 48 
     | 
    
         
            +
              # read release version from GEM_RELEASE_VERSION
         
     | 
| 
      
 49 
     | 
    
         
            +
              verfile = 'build/tdclrb/GEM_RELEASE_VERSION'
         
     | 
| 
      
 50 
     | 
    
         
            +
              unless File.exist?(verfile)
         
     | 
| 
      
 51 
     | 
    
         
            +
                raise 'Can not found ' + verfile
         
     | 
| 
      
 52 
     | 
    
         
            +
              end
         
     | 
| 
      
 53 
     | 
    
         
            +
              File.open(verfile, "r") {|f|
         
     | 
| 
      
 54 
     | 
    
         
            +
                l = f.read.gsub(/\s\n/, '')
         
     | 
| 
      
 55 
     | 
    
         
            +
                versions[:GEM_RELEASE_VERSION] = Integer(l)
         
     | 
| 
      
 56 
     | 
    
         
            +
              }
         
     | 
| 
       49 
57 
     | 
    
         
             
              s.version = versions[:CPP_INTERFACE_VER_MAJOR].to_s + '.' + 
         
     | 
| 
       50 
58 
     | 
    
         
             
                          versions[:CPP_INTERFACE_VER_MINOR].to_s + '.' + 
         
     | 
| 
       51 
     | 
    
         
            -
                          versions[: 
     | 
| 
      
 59 
     | 
    
         
            +
                          versions[:GEM_RELEASE_VERSION].to_s
         
     | 
| 
       52 
60 
     | 
    
         | 
| 
       53 
61 
     | 
    
         
             
              binary_file = File.join('bin', RUBY_VERSION.match(/\d+\.\d+/)[0], 'transactd.so')
         
     | 
| 
       54 
62 
     | 
    
         
             
              binarymode = File.exist?(binary_file)
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: transactd
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 2.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 2.0.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: x86-mswin32-100
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - BizStation Corp.
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2014-09- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2014-09-30 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies: []
         
     | 
| 
       13 
13 
     | 
    
         
             
            description: Transactd client for ruby gem
         
     | 
| 
       14 
14 
     | 
    
         
             
            email: transactd@bizstation.jp
         
     | 
| 
         @@ -19,6 +19,7 @@ extra_rdoc_files: [] 
     | 
|
| 
       19 
19 
     | 
    
         
             
            files:
         
     | 
| 
       20 
20 
     | 
    
         
             
            - bin/1.9/transactd.so
         
     | 
| 
       21 
21 
     | 
    
         
             
            - bin/2.0/transactd.so
         
     | 
| 
      
 22 
     | 
    
         
            +
            - bin/2.1/transactd.so
         
     | 
| 
       22 
23 
     | 
    
         
             
            - build/tdclrb/bldgem/extconf.rb
         
     | 
| 
       23 
24 
     | 
    
         
             
            - bin/common/tdclcpp_vc100_32mr_2_0.dll
         
     | 
| 
       24 
25 
     | 
    
         
             
            - bin/common/tdclc_32_2_0.dll
         
     |