transactd 2.0.0-x64-mswin64-100 → 2.0.1-x64-mswin64-100

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 58ac4522ef2229333286e84c6b7823d74a871966
4
- data.tar.gz: 8ebb80f12609e6dedc86b6b805d64beedfeb4e77
3
+ metadata.gz: 7b7cdad808a2c93ec2b94e4037a9e451203a7cec
4
+ data.tar.gz: b971b7a94531406c8b8d614146e31eb728de29a4
5
5
  SHA512:
6
- metadata.gz: 41f6c71cbd9b1379ad84139cee58b444b0a44748d6022324d9ab253f2e7efe0b3e4324780f23903c2c28aa15e15d49fbde745251dd78140b7201179fb5ea112e
7
- data.tar.gz: fc4b00d7a9177ec77a335b0ff992e93407f3b55efea3ec8d8b0b474ff8f6b831a8d8bdd3cecc6bab94d3be166b265c2d76e2bb427f62900ff91c886f9e379bde
6
+ metadata.gz: 43d95f3644f3cf65e4299446b1cf37ffd2595453f8b543b443836b13a86507a8bfd61156a0c1d569414cd115b0241707e2b6d51d5b79cec4c43b96c3c36f1835
7
+ data.tar.gz: 9a579a0822eb5c73cb4644bbcc8056c9815bd8d8890e27563853ff5fe4608b74b9ab86ecd814c6bdd62eb5d11737bb70151254372de6ecd76ffdd213dfd0bbac
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: x64-mswin64-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
@@ -18,6 +18,7 @@ extensions:
18
18
  extra_rdoc_files: []
19
19
  files:
20
20
  - bin/2.0/transactd.so
21
+ - bin/2.1/transactd.so
21
22
  - build/tdclrb/bldgem/extconf.rb
22
23
  - bin/common/tdclcpp_vc100_64mr_2_0.dll
23
24
  - bin/common/tdclc_64_2_0.dll