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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e7982396e445356477013f33567861a7453458a3
4
- data.tar.gz: 3b9a0388b7bfe758e3be91e7831c7274342ec923
3
+ metadata.gz: 66308a55c975a30f2344a904ecdf5ceac841f9ab
4
+ data.tar.gz: f9d94efde2473dcdf6d713af0b604a71d571817f
5
5
  SHA512:
6
- metadata.gz: 9a45e70ade6c2bfba58ab2c384a760ced253206d763c6753dbbeb7644a9bff77d495e7fa1dc62a14715f79d3d07208fbf8fade6cd570f3e1007c4454e301df0c
7
- data.tar.gz: b4e996c68ae8268f1cb9861ecf0ac1a765e40ca8f92d1b3a531a93d195e1e5324ca0aa36f2468e3d6efd5ce9cae1938d481b0b2854f37a7cadce312f3fc00dc3
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
@@ -40,6 +40,8 @@ if ERRORLEVEL 1 (
40
40
 
41
41
  if "%~1" == "install" goto :INSTALLCMD
42
42
  if "%~1" == "site-install" goto :INSTALLCMD
43
+ if "%~2" == "install" goto :INSTALLCMD
44
+ if "%~2" == "site-install" goto :INSTALLCMD
43
45
  exit /b 0
44
46
 
45
47
  :INSTALLCMD
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[:CPP_INTERFACE_VER_RELEASE].to_s
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.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-25 00:00:00.000000000 Z
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