rutils 1.1.3 → 1.1.4

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.
@@ -1,4 +1,8 @@
1
- === 1.1.3 - 15.10.2010
1
+ === 1.1.4 - 03.11.2010
2
+
3
+ * Подавление KCODE для Ruby 1.9
4
+
5
+ === 1.1.3 - 03.11.2010
2
6
 
3
7
  * Добавлена лицензия
4
8
 
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- $KCODE = 'u'
2
+ $KCODE = 'u' if RUBY_VERSION < '1.9.0'
3
3
  $:.reject! { |e| e.include? 'TextMate' }
4
4
 
5
5
  require 'lib/version'
@@ -45,4 +45,4 @@ rescue LoadError
45
45
  t.pattern = 'test/test_*.rb'
46
46
  t.verbose = true
47
47
  end
48
- end
48
+ end
@@ -12,7 +12,7 @@
12
12
  # == Author
13
13
  # Julik <me@julik.nl>
14
14
 
15
- $KCODE = 'u'
15
+ $KCODE = 'u' if RUBY_VERSION < '1.9.0'
16
16
  require File.dirname(__FILE__) + '/../lib/rutils'
17
17
  require 'optparse'
18
18
  require 'rdoc/usage'
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- $KCODE = 'u'
2
+ $KCODE = 'u' if RUBY_VERSION < '1.9.0'
3
3
  require 'yaml'
4
4
 
5
5
  class IsoCountry #:nodoc:
@@ -1770,4 +1770,4 @@ IsoCountry.load_from_yaml <<EOF
1770
1770
  :ru: "острова Уоллис и Футура"
1771
1771
  :en: Wallis and Futuna Islands
1772
1772
  numeric: 876
1773
- EOF
1773
+ EOF
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- $KCODE = 'u'
2
+ $KCODE = 'u' if RUBY_VERSION < '1.9.0'
3
3
 
4
4
  require File.dirname(__FILE__) + '/version'
5
5
 
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  module RuTils
3
3
  # Версия RuTils
4
- VERSION = '1.1.3'
4
+ VERSION = '1.1.4'
5
5
  end
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- $KCODE = 'u'
2
+ $KCODE = 'u' if RUBY_VERSION < '1.9.0'
3
3
  require 'test/unit'
4
4
  require File.dirname(__FILE__) + '/../lib/rutils'
5
5
 
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- $KCODE = 'u'
2
+ $KCODE = 'u' if RUBY_VERSION < '1.9.0'
3
3
  require 'test/unit'
4
4
 
5
5
  require File.dirname(__FILE__) + '/../lib/rutils'
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- $KCODE = 'u'
2
+ $KCODE = 'u' if RUBY_VERSION < '1.9.0'
3
3
  require 'test/unit'
4
4
 
5
5
  require File.dirname(__FILE__) + '/../lib/rutils'
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- $KCODE = 'u'
2
+ $KCODE = 'u' if RUBY_VERSION < '1.9.0'
3
3
  require 'test/unit'
4
4
  require File.dirname(__FILE__) + '/../lib/rutils'
5
5
 
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- $KCODE = 'u'
2
+ $KCODE = 'u' if RUBY_VERSION < '1.9.0'
3
3
  require 'test/unit'
4
4
  require File.dirname(__FILE__) + '/../lib/rutils'
5
5
 
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- $KCODE = 'u'
2
+ $KCODE = 'u' if RUBY_VERSION < '1.9.0'
3
3
  require 'test/unit'
4
4
  require File.dirname(__FILE__) + '/../lib/rutils'
5
5
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rutils
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 3
10
- version: 1.1.3
9
+ - 4
10
+ version: 1.1.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Julian 'Julik' Tarkhanov