renc 1.3.0 → 1.3.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d3125b37f8be1fbbb5c13ed9b8cfc46a9b194842
4
- data.tar.gz: e4728c765ba5fa9e0ee91bcf529eea90291582e3
3
+ metadata.gz: 2961272d2bc8daa940bc880bbfb4016333c56a8d
4
+ data.tar.gz: fa2ca88bf5c656d5ed89930a41a9d6a184ad8b46
5
5
  SHA512:
6
- metadata.gz: 0fa3a777853a2e7e32df811616bcf2379150dc8537696c0575d24d3ed1208724a858c2891558e8232617073b781387f4046b5a829cb825172ed42bbba70e3f56
7
- data.tar.gz: 28f87fdcf7561059f7b48580ef1cfa3d38af1ca586a2cfc230a05c6bb8feb85c3d5134893e3728cd2c84e6ceda03277b38925784e63a8afa9da032e71329df63
6
+ metadata.gz: '0877c18c27f378076e68127a825f371e8cdad3b001d48ce6897d9eaf880cc085f544cc4b54747c807d35784f3e6da195f36403f69a4f6c7db4a8317d5dcb7a8e'
7
+ data.tar.gz: 949a2b453def851195f5e4509a0d45045f6f704243b46227ff0b39c1b1f2e28aeee27a88f0ca7e69575de935c32d94b8b397cbe09e713b099cbe0ddbe99acf57
@@ -1,6 +1,11 @@
1
1
  language: ruby
2
2
  cache: bundler
3
3
  rvm:
4
- - 2.3.0
5
- - 2.2.4
6
- before_install: gem install bundler -v 1.11.2
4
+ - 2.4.0
5
+ - 2.3.3
6
+ - 2.2.6
7
+ - 2.1.10
8
+ - 2.0.0-p648
9
+ before_install:
10
+ - gem update --system --no-doc
11
+ - gem install bundler
@@ -1,12 +1,16 @@
1
+ # v1.3.1
2
+ - [issue #14](https://github.com/k-ta-yamada/renc/issues/14)
3
+ String.include is NoMethodError on Ruby 2.0.0
4
+
1
5
  # v1.3.0
2
- - [issue #7](https://github.com/k-ta-yamada/tee_logger/issues/7)
6
+ - [issue #7](https://github.com/k-ta-yamada/renc/issues/7)
3
7
  configuration default encoding
4
8
 
5
9
  # v1.2.0
6
10
  - remove `Renc#enc` method
7
11
 
8
12
  # v1.1.0
9
- - [issue #4](https://github.com/k-ta-yamada/tee_logger/issues/4)
13
+ - [issue #4](https://github.com/k-ta-yamada/renc/issues/4)
10
14
  #renc for Hash and Array
11
15
 
12
16
  # v1.0.1
data/README.md CHANGED
@@ -52,7 +52,7 @@ hash_val.renc == hash_val # => true
52
52
  ```
53
53
 
54
54
  ### Nested Hash, Array, and others
55
- > @ref [./spec/spec_helper.rb](https://github.com/k-ta-yamada/renc/blob/feature/issue7/spec/spec_helper.rb#L18)
55
+ > @ref [./spec/spec_helper.rb](https://github.com/k-ta-yamada/renc/blob/master/spec/spec_helper.rb#L18)
56
56
 
57
57
  ```ruby
58
58
  # @ref ./spec/spec_helper.rb#L18
@@ -10,7 +10,7 @@ module Renc
10
10
 
11
11
  # for include #renc method
12
12
  TARGET_CLASS = [String, Array, Hash].freeze
13
- TARGET_CLASS.each { |klass| klass.include self }
13
+ TARGET_CLASS.each { |klass| klass.send(:include, self) }
14
14
 
15
15
  class << self
16
16
  # return @default_encoding
@@ -1,3 +1,3 @@
1
1
  module Renc
2
- VERSION = '1.3.0'.freeze
2
+ VERSION = '1.3.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: renc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - k-ta-yamada
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-03-04 00:00:00.000000000 Z
11
+ date: 2017-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -179,9 +179,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
179
179
  version: '0'
180
180
  requirements: []
181
181
  rubyforge_project:
182
- rubygems_version: 2.5.1
182
+ rubygems_version: 2.6.8
183
183
  signing_key:
184
184
  specification_version: 4
185
185
  summary: recurse encoding for Hash and Array.
186
186
  test_files: []
187
- has_rdoc: