Mxx_ru 1.6.2 → 1.6.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. checksums.yaml +7 -0
  2. data/README +8 -8
  3. data/Rakefile +2 -2
  4. data/lib/mxx_ru/abstract_target.rb +1 -1
  5. data/lib/mxx_ru/binary_library.rb +1 -1
  6. data/lib/mxx_ru/binary_target.rb +1 -1
  7. data/lib/mxx_ru/binary_unittest.rb +36 -2
  8. data/lib/mxx_ru/cmd_line_option_processor.rb +1 -1
  9. data/lib/mxx_ru/compat.rb +1 -1
  10. data/lib/mxx_ru/cpp.rb +1 -1
  11. data/lib/mxx_ru/cpp/analyzer.rb +1 -1
  12. data/lib/mxx_ru/cpp/composite.rb +1 -1
  13. data/lib/mxx_ru/cpp/detect_toolset.rb +2 -2
  14. data/lib/mxx_ru/cpp/lib_collection.rb +1 -1
  15. data/lib/mxx_ru/cpp/mode.rb +1 -1
  16. data/lib/mxx_ru/cpp/obj_placement.rb +1 -1
  17. data/lib/mxx_ru/cpp/obj_placements/custom_subdir.rb +1 -1
  18. data/lib/mxx_ru/cpp/qt.rb +1 -1
  19. data/lib/mxx_ru/cpp/qt4.rb +1 -1
  20. data/lib/mxx_ru/cpp/qt4_via_pkg_config.rb +1 -1
  21. data/lib/mxx_ru/cpp/qt4details.rb +1 -1
  22. data/lib/mxx_ru/cpp/rucodegen.rb +1 -1
  23. data/lib/mxx_ru/cpp/source_file.rb +1 -1
  24. data/lib/mxx_ru/cpp/target.rb +1 -1
  25. data/lib/mxx_ru/cpp/toolset.rb +70 -7
  26. data/lib/mxx_ru/cpp/toolsets/bcc_win32_5.rb +1 -1
  27. data/lib/mxx_ru/cpp/toolsets/bcc_win32_family.rb +1 -1
  28. data/lib/mxx_ru/cpp/toolsets/c89_etk_nsk.rb +1 -1
  29. data/lib/mxx_ru/cpp/toolsets/c89_nsk.rb +1 -1
  30. data/lib/mxx_ru/cpp/toolsets/c89_nsk_family.rb +1 -1
  31. data/lib/mxx_ru/cpp/toolsets/clang_family.rb +10 -4
  32. data/lib/mxx_ru/cpp/toolsets/clang_linux.rb +1 -1
  33. data/lib/mxx_ru/cpp/toolsets/gcc_cygwin.rb +1 -1
  34. data/lib/mxx_ru/cpp/toolsets/gcc_darwin.rb +1 -1
  35. data/lib/mxx_ru/cpp/toolsets/gcc_family.rb +10 -15
  36. data/lib/mxx_ru/cpp/toolsets/gcc_linux.rb +1 -1
  37. data/lib/mxx_ru/cpp/toolsets/gcc_mingw.rb +1 -1
  38. data/lib/mxx_ru/cpp/toolsets/gcc_sparc_solaris.rb +1 -1
  39. data/lib/mxx_ru/cpp/toolsets/gcc_unix_family.rb +1 -1
  40. data/lib/mxx_ru/cpp/toolsets/icc_win.rb +1 -1
  41. data/lib/mxx_ru/cpp/toolsets/vc10.rb +1 -1
  42. data/lib/mxx_ru/cpp/toolsets/vc11.rb +1 -1
  43. data/lib/mxx_ru/cpp/toolsets/vc12.rb +1 -1
  44. data/lib/mxx_ru/cpp/toolsets/vc7.rb +1 -1
  45. data/lib/mxx_ru/cpp/toolsets/vc8.rb +1 -1
  46. data/lib/mxx_ru/cpp/toolsets/vc8_family.rb +1 -1
  47. data/lib/mxx_ru/cpp/toolsets/vc9.rb +1 -1
  48. data/lib/mxx_ru/cpp/toolsets/vc_family.rb +1 -1
  49. data/lib/mxx_ru/environment_setup.rb +1 -1
  50. data/lib/mxx_ru/ex.rb +1 -1
  51. data/lib/mxx_ru/generators/bin-unittest/g.rb +1 -1
  52. data/lib/mxx_ru/generators/cpp-build-root/g.rb +1 -1
  53. data/lib/mxx_ru/generators/cpp-composite/g.rb +1 -1
  54. data/lib/mxx_ru/generators/cpp-dll/g.rb +1 -1
  55. data/lib/mxx_ru/generators/cpp-exe/g.rb +1 -1
  56. data/lib/mxx_ru/generators/cpp-lib-collection/g.rb +1 -1
  57. data/lib/mxx_ru/generators/cpp-lib/g.rb +1 -1
  58. data/lib/mxx_ru/generators/impl/cpp/generation.rb +1 -1
  59. data/lib/mxx_ru/generators/impl/std_receiver.rb +1 -1
  60. data/lib/mxx_ru/makestyle_generator.rb +1 -1
  61. data/lib/mxx_ru/textfile_unittest.rb +1 -1
  62. data/lib/mxx_ru/util.rb +1 -1
  63. data/lib/mxx_ru/version.rb +2 -2
  64. data/tests/mxx_ru/generators/cpp/tc_generator.rb +1 -1
  65. data/tests/mxx_ru/generators/cpp/tc_template_params.rb +1 -1
  66. data/tests/unix/lib_linking_mode/tc_normal_build.rb +1 -1
  67. data/tests/unix/lib_order/a.cpp +3 -3
  68. data/tests/unix/lib_order/tc_normal_build.rb +1 -1
  69. metadata +119 -123
  70. data/tests/cpp/lib_from_lib_dependecies/a.cpp +0 -3
@@ -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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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,
@@ -71,9 +71,15 @@ module MxxRu
71
71
  target.compiler_option( "-I" + p )
72
72
  }
73
73
 
74
- if true == @is_cpp0x_std
75
- target.cpp_compiler_option( "-std=c++0x" )
76
- target.cpp_compiler_option( "-std=gnu++0x" )
74
+ if CPP_STD14 == cpp_std
75
+ target.cpp_compiler_option( 'std=c++14' )
76
+ elsif CPP_STD11 == cpp_std
77
+ target.cpp_compiler_option( "-std=c++11" )
78
+ end
79
+
80
+ if CPP_STD11 <= cpp_std and
81
+ THREADING_MULTI == target.mxx_threading_mode
82
+ target.linker_option( '-pthread' )
77
83
  end
78
84
  end
79
85
 
@@ -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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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,
@@ -47,7 +47,6 @@ module MxxRu
47
47
 
48
48
  def initialize( a_name )
49
49
  super( a_name )
50
- @is_cpp0x_std = false
51
50
  end
52
51
 
53
52
  # Returns C compiler name.
@@ -96,11 +95,6 @@ module MxxRu
96
95
  target.linker_option( "-shared-libgcc" )
97
96
  end
98
97
 
99
- # If C++ files are exist, linker should use stdc++ library.
100
- if target.mxx_cpp_files.size
101
- # target.lib( "stdc++" )
102
- end
103
-
104
98
  target.mxx_all_defines.each { |d|
105
99
  target.compiler_option( "-D" + d )
106
100
  }
@@ -109,9 +103,15 @@ module MxxRu
109
103
  target.compiler_option( "-I" + p )
110
104
  }
111
105
 
112
- if true == @is_cpp0x_std
113
- target.cpp_compiler_option( "-std=c++0x" )
114
- target.cpp_compiler_option( "-std=gnu++0x" )
106
+ if CPP_STD14 == cpp_std
107
+ target.cpp_compiler_option( 'std=c++14' )
108
+ elsif CPP_STD11 == cpp_std
109
+ target.cpp_compiler_option( '-std=c++11' )
110
+ end
111
+
112
+ if CPP_STD11 <= cpp_std and
113
+ THREADING_MULTI == target.mxx_threading_mode
114
+ target.linker_option( '-pthread' )
115
115
  end
116
116
  end
117
117
 
@@ -316,11 +316,6 @@ module MxxRu
316
316
  def port_specific_lib_name_checker(library_name)
317
317
  library_name
318
318
  end
319
-
320
- # Sets a flag includes "-std=c++0x" compiler option.
321
- def force_cpp0x_std
322
- @is_cpp0x_std = true
323
- end
324
319
  end # class GccFamily
325
320
 
326
321
  # For compatibility with previous versions.
@@ -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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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-2013, The Mxx_ru Project
4
+ # Copyright (c) 2006-2014, 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,