Mxx_ru 1.6.0 → 1.6.1

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.
Files changed (62) hide show
  1. data/COPYING +1 -1
  2. data/README +1 -1
  3. data/lib/mxx_ru/abstract_target.rb +1 -1
  4. data/lib/mxx_ru/binary_library.rb +1 -1
  5. data/lib/mxx_ru/binary_target.rb +1 -1
  6. data/lib/mxx_ru/binary_unittest.rb +1 -1
  7. data/lib/mxx_ru/cmd_line_option_processor.rb +1 -1
  8. data/lib/mxx_ru/compat.rb +1 -1
  9. data/lib/mxx_ru/cpp.rb +1 -1
  10. data/lib/mxx_ru/cpp/analyzer.rb +1 -1
  11. data/lib/mxx_ru/cpp/composite.rb +1 -1
  12. data/lib/mxx_ru/cpp/detect_toolset.rb +1 -1
  13. data/lib/mxx_ru/cpp/lib_collection.rb +1 -1
  14. data/lib/mxx_ru/cpp/mode.rb +1 -1
  15. data/lib/mxx_ru/cpp/obj_placement.rb +1 -1
  16. data/lib/mxx_ru/cpp/obj_placements/custom_subdir.rb +1 -1
  17. data/lib/mxx_ru/cpp/qt.rb +1 -1
  18. data/lib/mxx_ru/cpp/qt4.rb +1 -1
  19. data/lib/mxx_ru/cpp/qt4_via_pkg_config.rb +1 -1
  20. data/lib/mxx_ru/cpp/qt4details.rb +1 -1
  21. data/lib/mxx_ru/cpp/rucodegen.rb +1 -1
  22. data/lib/mxx_ru/cpp/source_file.rb +1 -1
  23. data/lib/mxx_ru/cpp/target.rb +1 -1
  24. data/lib/mxx_ru/cpp/toolset.rb +1 -1
  25. data/lib/mxx_ru/cpp/toolsets/bcc_win32_5.rb +1 -1
  26. data/lib/mxx_ru/cpp/toolsets/bcc_win32_family.rb +1 -1
  27. data/lib/mxx_ru/cpp/toolsets/c89_etk_nsk.rb +1 -1
  28. data/lib/mxx_ru/cpp/toolsets/c89_nsk.rb +1 -1
  29. data/lib/mxx_ru/cpp/toolsets/c89_nsk_family.rb +1 -1
  30. data/lib/mxx_ru/cpp/toolsets/clang_family.rb +2 -1
  31. data/lib/mxx_ru/cpp/toolsets/clang_linux.rb +1 -1
  32. data/lib/mxx_ru/cpp/toolsets/gcc_cygwin.rb +1 -1
  33. data/lib/mxx_ru/cpp/toolsets/gcc_darwin.rb +1 -1
  34. data/lib/mxx_ru/cpp/toolsets/gcc_family.rb +2 -1
  35. data/lib/mxx_ru/cpp/toolsets/gcc_linux.rb +1 -1
  36. data/lib/mxx_ru/cpp/toolsets/gcc_mingw.rb +1 -1
  37. data/lib/mxx_ru/cpp/toolsets/gcc_sparc_solaris.rb +1 -1
  38. data/lib/mxx_ru/cpp/toolsets/gcc_unix_family.rb +1 -1
  39. data/lib/mxx_ru/cpp/toolsets/icc_win.rb +1 -1
  40. data/lib/mxx_ru/cpp/toolsets/vc10.rb +1 -1
  41. data/lib/mxx_ru/cpp/toolsets/vc11.rb +1 -1
  42. data/lib/mxx_ru/cpp/toolsets/vc7.rb +1 -1
  43. data/lib/mxx_ru/cpp/toolsets/vc8.rb +1 -1
  44. data/lib/mxx_ru/cpp/toolsets/vc8_family.rb +1 -1
  45. data/lib/mxx_ru/cpp/toolsets/vc9.rb +1 -1
  46. data/lib/mxx_ru/cpp/toolsets/vc_family.rb +1 -1
  47. data/lib/mxx_ru/environment_setup.rb +1 -1
  48. data/lib/mxx_ru/ex.rb +1 -1
  49. data/lib/mxx_ru/generators/bin-unittest/g.rb +1 -1
  50. data/lib/mxx_ru/generators/cpp-build-root/g.rb +1 -1
  51. data/lib/mxx_ru/generators/cpp-composite/g.rb +1 -1
  52. data/lib/mxx_ru/generators/cpp-dll/g.rb +1 -1
  53. data/lib/mxx_ru/generators/cpp-exe/g.rb +1 -1
  54. data/lib/mxx_ru/generators/cpp-lib-collection/g.rb +1 -1
  55. data/lib/mxx_ru/generators/cpp-lib/g.rb +1 -1
  56. data/lib/mxx_ru/generators/impl/cpp/generation.rb +1 -1
  57. data/lib/mxx_ru/generators/impl/std_receiver.rb +1 -1
  58. data/lib/mxx_ru/makestyle_generator.rb +1 -1
  59. data/lib/mxx_ru/textfile_unittest.rb +1 -1
  60. data/lib/mxx_ru/util.rb +1 -1
  61. data/lib/mxx_ru/version.rb +2 -2
  62. metadata +3 -3
data/COPYING CHANGED
@@ -1,6 +1,6 @@
1
1
  Copyright (c) 1996-2004, Yauheni Akhotnikau
2
2
  Copyright (c) 2004-2006, JSC Intervale
3
- Copyright (c) 2006-2009 The Mxx_ru Project
3
+ Copyright (c) 2006-2013 The Mxx_ru Project
4
4
  All rights reserved.
5
5
 
6
6
  Redistribution and use in source and binary forms, with or without modification,
data/README CHANGED
@@ -2,7 +2,7 @@ Copyright (c) 1996-2005, Yauheni Akhotnikau
2
2
 
3
3
  Copyright (c) 2004-2006, JSC Intervale
4
4
 
5
- Copyright (c) 2006-2009 The Mxx_ru Project
5
+ Copyright (c) 2006-2013 The Mxx_ru Project
6
6
 
7
7
  All rights reserved.
8
8
 
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
data/lib/mxx_ru/compat.rb CHANGED
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
data/lib/mxx_ru/cpp.rb CHANGED
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
data/lib/mxx_ru/cpp/qt.rb CHANGED
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -73,6 +73,7 @@ module MxxRu
73
73
 
74
74
  if true == @is_cpp0x_std
75
75
  target.cpp_compiler_option( "-std=c++0x" )
76
+ target.cpp_compiler_option( "-std=gnu++0x" )
76
77
  end
77
78
  end
78
79
 
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -111,6 +111,7 @@ module MxxRu
111
111
 
112
112
  if true == @is_cpp0x_std
113
113
  target.cpp_compiler_option( "-std=c++0x" )
114
+ target.cpp_compiler_option( "-std=gnu++0x" )
114
115
  end
115
116
  end
116
117
 
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
data/lib/mxx_ru/ex.rb CHANGED
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
data/lib/mxx_ru/util.rb CHANGED
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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,
@@ -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-2011, The Mxx_ru Project
4
+ # Copyright (c) 2006-2013, 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.0'
37
+ MXX_RU_VERSION = '1.6.1'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Mxx_ru
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.6.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-05-20 00:00:00.000000000 Z
12
+ date: 2013-07-27 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description:
15
15
  email: eao197@yahoo.com
@@ -365,7 +365,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
365
365
  version: '0'
366
366
  requirements: []
367
367
  rubyforge_project:
368
- rubygems_version: 1.8.23
368
+ rubygems_version: 1.8.24
369
369
  signing_key:
370
370
  specification_version: 3
371
371
  summary: Mxx_ru (Make++ on Ruby) is a cross-platform build tool