Mxx_ru 1.6.14.5 → 1.6.14.6

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
  SHA256:
3
- metadata.gz: 43b6cd4bb348294579aa1f5e4fba3becec17c4e6f6760f675f73e8f32cb85b50
4
- data.tar.gz: 9fa7879e08dcef3ee05c90b698fb46ecb535cbef66cc4bb456b2ef225e31912c
3
+ metadata.gz: a95f0a4c0f96826f5f274dd3af1352e681d2d419d4228ee8fd722ba6579280e7
4
+ data.tar.gz: e198f777e3278491e6bc97e81d3bc17caf31b410357be15fefd7f433c0e7b6c8
5
5
  SHA512:
6
- metadata.gz: cda0476a5c678b366cce24466aa7219860688d28b9c812ac70e0d0e609913129f168ca92c811eb8e0bb0baaa4dd8261608b57c30633922147238d12c2c049b42
7
- data.tar.gz: 02cc3d22f7997f3d5a22cc766f3efb9ac73d7d8727db87fa29c8b666ff7400877bf4513515e3726b82c046f433a04e1be1c4ab44776bc27403b9254396592598
6
+ metadata.gz: 26f5d92bf73e8291d596e0cd27700f97dea9f4cd3f00fb660d773c1a30a74cd1b9517a2ab26f24aaaaace912bdc860a15328bc115b444025816c0300a9a42c8d
7
+ data.tar.gz: edfed027bdadf5aeea2ecc84752de1c24d06e2677ea68d13e39044843fb31d5b1c5ae0ac5e69afb8f6a8d160610682c35379257a2e03b0cc93b937f9f20549c9
data/Rakefile CHANGED
@@ -22,7 +22,6 @@ spec = Gem::Specification.new do |s|
22
22
  exclude( "rdoc" ).to_a + [ "THANKS" ]
23
23
  s.executables = [ 'mxxrugen', 'mxxruexternals' ]
24
24
  s.require_path = "lib"
25
- s.has_rdoc = true
26
25
  s.rdoc_options = [ '--main', 'README' ]
27
26
  s.extra_rdoc_files = [ "README", "Rakefile", "COPYING", "NEWS" ] + FileList[ "docs/**/*" ].to_a
28
27
  end
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # Copyright (c) 1996-2004, Yauheni Akhotnikau
3
3
  # Copyright (c) 2004-2006, JSC Intervale
4
- # Copyright (c) 2006-2015, The Mxx_ru Project
4
+ # Copyright (c) 2006-2019, The Mxx_ru Project
5
5
  # All rights reserved.
6
6
  #
7
7
  # Redistribution and use in source and binary forms, with or without modification,
@@ -147,7 +147,7 @@ module MxxRu
147
147
  if RbConfig::CONFIG['host_os'] =~ /linux/
148
148
  # Assume that GCC is default compiler on Linux.
149
149
  "gcc_linux"
150
- elsif RbConfig::CONFIG['host_os'] =~ /^freebsd(9|10)$/
150
+ elsif RbConfig::CONFIG['host_os'] =~ /^freebsd(9|10|11|12)$/
151
151
  "clang_freebsd"
152
152
  else
153
153
  if ENV[ 'COMP_ENV' ] and ENV[ 'VC_ARCH' ]
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # Copyright (c) 1996-2004, Yauheni Akhotnikau
3
3
  # Copyright (c) 2004-2006, JSC Intervale
4
- # Copyright (c) 2006-2018, The Mxx_ru Project
4
+ # Copyright (c) 2006-2019, The Mxx_ru Project
5
5
  # All rights reserved.
6
6
  #
7
7
  # Redistribution and use in source and binary forms, with or without modification,
@@ -34,4 +34,4 @@
34
34
  #
35
35
  # puts 'Mxx_ru version is: ' + MXX_RU_VERSION
36
36
  #
37
- MXX_RU_VERSION = '1.6.14.5'
37
+ MXX_RU_VERSION = '1.6.14.6'
@@ -12,7 +12,7 @@ class TC_CustomTargetPrefix < Test::Unit::TestCase
12
12
  test_case :build_and_clean do
13
13
  build( 'dll.rb' )
14
14
 
15
- assert( File.exists?( EXPECTED_NAME ),
15
+ assert( File.exist?( EXPECTED_NAME ),
16
16
  "Expected name is '#{EXPECTED_NAME}'" )
17
17
 
18
18
  clean( 'dll.rb' )
@@ -39,7 +39,7 @@ class TC_makestyle_generator < Test::Unit::TestCase
39
39
 
40
40
  g1.build( "dummy" )
41
41
 
42
- assert( FileTest.exists?( "a" ) )
42
+ assert( FileTest.exist?( "a" ) )
43
43
  end
44
44
 
45
45
  def test_build_no_real_rebuild
@@ -71,7 +71,7 @@ class TC_makestyle_generator < Test::Unit::TestCase
71
71
 
72
72
  assert( FileTest.size( "t1" ) > 0 )
73
73
  assert( FileTest.size( "t2" ) > 0 )
74
- assert( !FileTest.exists?( "t3" ) )
74
+ assert( !FileTest.exist?( "t3" ) )
75
75
 
76
76
  File.truncate( "t1", 0 )
77
77
  File.truncate( "t2", 0 )
@@ -80,7 +80,7 @@ class TC_makestyle_generator < Test::Unit::TestCase
80
80
 
81
81
  assert( FileTest.size( "t1" ) > 0 )
82
82
  assert( FileTest.size( "t2" ) > 0 )
83
- assert( !FileTest.exists?( "t3" ) )
83
+ assert( !FileTest.exist?( "t3" ) )
84
84
 
85
85
  end
86
86
 
@@ -102,9 +102,9 @@ class TC_makestyle_generator < Test::Unit::TestCase
102
102
 
103
103
  g.clean( "dummy" )
104
104
 
105
- assert( !FileTest.exists?( "t1" ) )
106
- assert( !FileTest.exists?( "t2" ) )
107
- assert( !FileTest.exists?( "t3" ) )
105
+ assert( !FileTest.exist?( "t1" ) )
106
+ assert( !FileTest.exist?( "t2" ) )
107
+ assert( !FileTest.exist?( "t3" ) )
108
108
  end
109
109
 
110
110
  def teardown
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Mxx_ru
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.14.5
4
+ version: 1.6.14.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Mxx_ru Project
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-05-10 00:00:00.000000000 Z
11
+ date: 2019-01-18 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Mxx_ru is a cross-platform build tool primarily focused to C/C++ projects
14
14
  email: eao197@yahoo.com
@@ -397,7 +397,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
397
397
  version: '0'
398
398
  requirements: []
399
399
  rubyforge_project:
400
- rubygems_version: 2.7.6
400
+ rubygems_version: 2.7.8
401
401
  signing_key:
402
402
  specification_version: 4
403
403
  summary: Mxx_ru (Make++ on Ruby) is a cross-platform build tool