r2corba 1.6.0-universal-java → 1.6.1-universal-java

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
  SHA256:
3
- metadata.gz: 69e0ff7d6afbe85b24a59f0f449c771e2ddde64d48840e1e187064f438b72206
4
- data.tar.gz: 5836aee0244257218cee85dc2ee854fd578d22fa6ec06a6d051df932a69c5fc4
3
+ metadata.gz: ae28ae687f9571f4d97fd495e273164decf3c09b5d45e4a93c68fe369d87209c
4
+ data.tar.gz: 5cefa2e37ff72e34637cb4e9b572b17a8f8a6bad604ba60a3acfc4ff0f3ff453
5
5
  SHA512:
6
- metadata.gz: 5b464541e1a002e9158f6016f870a8997988207811e7d6973d1982eabdff8f2657b0c461f330d5cc2ace6ca3ce572f1598cb6116d360c4f9534d92d449c80874
7
- data.tar.gz: 568b837ad2d00aaffd43fa788e135b694321f923ba616aac54d755c38901ebd41582610fa563f4fafe3786c4f8c5323573c319eb176c79eae06212f84bacb410
6
+ metadata.gz: d529b6c28ff5ccb95eab85e92ae3aec18b44bbdb1ae37250d3fed328a5a5947e438a44cb6248566d7b05c76a369e979acb5a8aca63adc1c667deaa599276aebf
7
+ data.tar.gz: c3dfd76cb580b3f26a049a393c10ac317883cef3228854bbb10b4fdf8346c117f13fd6dbe6fcda4bc2c734c50767c662111dfb6eb45d42cde9432f3bd926e331
data/README.rdoc CHANGED
@@ -40,7 +40,7 @@ If you find a bug, please report it at the R2CORBA project's {issue tracker}[htt
40
40
 
41
41
  == License
42
42
 
43
- R2CORBA is Copyright (c) 2007-2021 Remedy IT Expertise BV, The Netherlands.
43
+ R2CORBA is Copyright (c) 2007-2022 Remedy IT Expertise BV, The Netherlands.
44
44
 
45
45
  It is free software, and may be redistributed under the terms specified in the link:LICENSE file.
46
46
 
@@ -13,7 +13,7 @@
13
13
  begin
14
14
  _ext_dir = File.expand_path(File.join(File.dirname(__FILE__), '../../../ext'))
15
15
  $: << _ext_dir unless $:.include?(_ext_dir) || !File.directory?(_ext_dir)
16
- if RUBY_PLATFORM =~ /mingw32/
16
+ if RUBY_PLATFORM =~ /mingw/
17
17
  require 'ruby_installer/runtime'
18
18
  RubyInstaller::Runtime.add_dll_directory(_ext_dir)
19
19
  ENV['PATH'].split(File::PATH_SEPARATOR).each do |path|
@@ -14,7 +14,7 @@ module R2CORBA
14
14
 
15
15
  R2CORBA_MAJOR = 1
16
16
  R2CORBA_MINOR = 6
17
- R2CORBA_RELEASE = 0
17
+ R2CORBA_RELEASE = 1
18
18
 
19
19
  R2CORBA_VERSION = "#{R2CORBA_MAJOR}.#{R2CORBA_MINOR}.#{R2CORBA_RELEASE}".freeze
20
20
 
@@ -20,7 +20,7 @@ module R2CORBA
20
20
  INS_VERSION_RELEASE = 1
21
21
  INS_COPYRIGHT = "Copyright (c) 2011-#{Time.now.year} Remedy IT Expertise BV, The Netherlands".freeze
22
22
 
23
- IS_WIN32 = (RUBY_PLATFORM =~ /win32/ || RUBY_PLATFORM =~ /mingw32/ || ENV['OS'] =~ /windows/i) ? true : false
23
+ IS_WIN32 = (RUBY_PLATFORM =~ /win32/ || RUBY_PLATFORM =~ /mingw/ || ENV['OS'] =~ /windows/i) ? true : false
24
24
  IS_JRUBY = defined?(JRUBY_VERSION)
25
25
 
26
26
  @@daemons_installed = false
data/rakelib/config.rb CHANGED
@@ -171,7 +171,7 @@ module R2CORBA
171
171
  :aceinstdir => '',
172
172
  :'with-ipv6' => false,
173
173
  :'with-ssl' => false,
174
- :sslroot => ENV['SSL_ROOT'] || (RUBY_PLATFORM =~ /mingw32/ ? '' : '/usr'),
174
+ :sslroot => ENV['SSL_ROOT'] || (RUBY_PLATFORM =~ /mingw/ ? '' : '/usr'),
175
175
  :'with-debug' => false,
176
176
  })
177
177
  BUILD_CFG = '.rconfig'
@@ -205,7 +205,7 @@ module R2CORBA
205
205
  @@ruby_ver[2]
206
206
  end
207
207
 
208
- @@is_win32 = RUBY_PLATFORM =~ /mingw32/ ? true : false
208
+ @@is_win32 = RUBY_PLATFORM =~ /mingw/ ? true : false
209
209
  @@is_win64 = (@@is_win32 && (RUBY_PLATFORM =~ /x64/)) ? true : false
210
210
  @@is_linux = RB_CONFIG['target_os'] =~ /linux/ ? true : false
211
211
  @@is_osx = RUBY_PLATFORM =~ /darwin/ ? true : false
data/test/lib/test.rb CHANGED
@@ -21,7 +21,7 @@ module TestUtil
21
21
  end
22
22
 
23
23
  def self.is_win32?
24
- (RB_CONFIG['target_os'] =~ /win32/ || RB_CONFIG['target_os'] =~ /mingw32/) ? true : false
24
+ (RB_CONFIG['target_os'] =~ /win32/ || RB_CONFIG['target_os'] =~ /mingw/) ? true : false
25
25
  end
26
26
 
27
27
  RBVersion = RUBY_VERSION.split('.').collect {|x| x.to_i}
data/test/test_runner.rb CHANGED
@@ -19,7 +19,7 @@ else
19
19
  RB_CONFIG = Config::CONFIG
20
20
  end
21
21
 
22
- is_win32 = (RB_CONFIG['target_os'] =~ /win32/ || RB_CONFIG['target_os'] =~ /mingw32/) ? true : false
22
+ is_win32 = (RB_CONFIG['target_os'] =~ /win32/ || RB_CONFIG['target_os'] =~ /mingw/) ? true : false
23
23
 
24
24
  root_path = File.expand_path(File.join(File.dirname(__FILE__), '..'))
25
25
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: r2corba
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.6.1
5
5
  platform: universal-java
6
6
  authors:
7
7
  - Martin Corino
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-08-11 00:00:00.000000000 Z
12
+ date: 2022-03-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  requirement: !ruby/object:Gem::Requirement
@@ -305,7 +305,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
305
305
  - !ruby/object:Gem::Version
306
306
  version: '0'
307
307
  requirements: []
308
- rubygems_version: 3.1.6
308
+ rubygems_version: 3.2.29
309
309
  signing_key:
310
310
  specification_version: 4
311
311
  summary: CORBA language mapping implementation for Ruby