Mxx_ru 1.6.4 → 1.6.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2e2c00099e6dcbfccad9286a9bceac3462bacf2b
4
+ data.tar.gz: 13d25bc55d53b0f0f28590054b1443cead4fa2a5
5
+ SHA512:
6
+ metadata.gz: 26ce2a4e53a6005f61b604938eea9b5f6091a4629c351a0efd095550e5b71fef2bc5f8271096c4242a92d573d6a3e430fef7ddc5cce397cbdf754d0c69a2d787
7
+ data.tar.gz: 6d0530f408a5c3587634bd0f1aa30022f944a9e9d8bcd87915268169c907551f2a9b0d4e364bbb8659f249cfd1f953ced1f256318560ec8d87fc87e0c1c76669
data/NEWS CHANGED
@@ -1,5 +1,9 @@
1
1
  Changes in Mxx_ru
2
2
 
3
+ 1.6.5 version (2015.04.10)
4
+
5
+ Bugfix release (fix for compiler flags for forcing C++14 mode).
6
+
3
7
  1.6.4 version (2015.02.16)
4
8
 
5
9
  Support for Clang on FreeBSD added.
@@ -72,7 +72,7 @@ module MxxRu
72
72
  }
73
73
 
74
74
  if CPP_STD14 == cpp_std
75
- target.cpp_compiler_option( 'std=c++14' )
75
+ target.cpp_compiler_option( '-std=c++14' )
76
76
  elsif CPP_STD11 == cpp_std
77
77
  target.cpp_compiler_option( "-std=c++11" )
78
78
  end
@@ -104,7 +104,7 @@ module MxxRu
104
104
  }
105
105
 
106
106
  if CPP_STD14 == cpp_std
107
- target.cpp_compiler_option( 'std=c++14' )
107
+ target.cpp_compiler_option( '-std=c++14' )
108
108
  elsif CPP_STD11 == cpp_std
109
109
  target.cpp_compiler_option( '-std=c++11' )
110
110
  end
@@ -34,4 +34,4 @@
34
34
  #
35
35
  # puts 'Mxx_ru version is: ' + MXX_RU_VERSION
36
36
  #
37
- MXX_RU_VERSION = '1.6.4'
37
+ MXX_RU_VERSION = '1.6.5'
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Mxx_ru
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.4
5
- prerelease:
4
+ version: 1.6.5
6
5
  platform: ruby
7
6
  authors:
8
7
  - The Mxx_ru Project
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2015-02-16 00:00:00.000000000 Z
11
+ date: 2015-04-10 00:00:00.000000000 Z
13
12
  dependencies: []
14
13
  description:
15
14
  email: eao197@yahoo.com
@@ -22,6 +21,11 @@ extra_rdoc_files:
22
21
  - COPYING
23
22
  - NEWS
24
23
  files:
24
+ - COPYING
25
+ - NEWS
26
+ - README
27
+ - Rakefile
28
+ - THANKS
25
29
  - bin/mxxrugen
26
30
  - examples/exe_and_lib/main.cpp
27
31
  - examples/exe_and_lib/prj.rb
@@ -340,35 +344,29 @@ files:
340
344
  - tests/unix/lib_order/main.cpp
341
345
  - tests/unix/lib_order/main.rb
342
346
  - tests/unix/lib_order/tc_normal_build.rb
343
- - THANKS
344
- - README
345
- - Rakefile
346
- - COPYING
347
- - NEWS
348
347
  homepage: http://sourceforge.net/projects/mxxru
349
348
  licenses: []
349
+ metadata: {}
350
350
  post_install_message:
351
351
  rdoc_options:
352
- - --main
352
+ - "--main"
353
353
  - README
354
354
  require_paths:
355
355
  - lib
356
356
  required_ruby_version: !ruby/object:Gem::Requirement
357
- none: false
358
357
  requirements:
359
- - - '>='
358
+ - - ">="
360
359
  - !ruby/object:Gem::Version
361
360
  version: '0'
362
361
  required_rubygems_version: !ruby/object:Gem::Requirement
363
- none: false
364
362
  requirements:
365
- - - '>='
363
+ - - ">="
366
364
  - !ruby/object:Gem::Version
367
365
  version: '0'
368
366
  requirements: []
369
367
  rubyforge_project:
370
- rubygems_version: 1.8.30
368
+ rubygems_version: 2.4.5
371
369
  signing_key:
372
- specification_version: 3
370
+ specification_version: 4
373
371
  summary: Mxx_ru (Make++ on Ruby) is a cross-platform build tool
374
372
  test_files: []