iconv 1.0.4 → 1.0.5

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: 3823e1fa1002a6e18053509f22feb19cd06d26e0
4
- data.tar.gz: 9be3b153697065b641029e19b5eb83fb6a27bc86
3
+ metadata.gz: ade5a248ad7f987695736e3ca42183dd22239a73
4
+ data.tar.gz: 99e537f2952a300717cfae04dac1be83b540b96d
5
5
  SHA512:
6
- metadata.gz: 013c937ab111480b165273d84ab8711e3c6fc2732c2ce8dd97179e7d467e942ad6a86305df6c759ed0dd04af2dc532660d10c310f97159510475d97f0e084cae
7
- data.tar.gz: 14ca42d65ab95969bf7103e2902610c3b2bb639b0168b1e58aaf48a0b84bbff1e844068c67111ddf619684c716b0051f85ed9a9169ef500ed41ecb0685ecac6e
6
+ metadata.gz: 6b2429d50669f11196f317ce0100843a0b636ad828f01ea3370045a9165182b6e5bbbebfa15960ce267e64cdd5a7efa3465265e64f38beb60bd3cb59664c6aab
7
+ data.tar.gz: ddda802caed973d6c14d5974b3c5f88e18ce2d969aaeeea3a3668fa565a3dc4412cb56cb6be5fb232715833bb170f4db1eb78b9c372e085281af2e0971f2b80b
@@ -1,11 +1,18 @@
1
1
  language: ruby
2
2
  rvm:
3
3
  - ruby-head
4
+ - 2.5.0
5
+ - 2.4.3
6
+ - 2.3.6
7
+ - 2.2
8
+ - 2.1
4
9
  - 2.0.0
5
10
  - 1.9.3
6
11
  - 1.9.2
7
12
  - 1.8.7
8
13
 
14
+ before_install: gem install bundler
15
+
9
16
  branches:
10
17
  only:
11
18
  - master
data/Gemfile CHANGED
@@ -2,4 +2,17 @@ source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in iconv.gemspec
4
4
  gemspec
5
- gem "rake"
5
+
6
+ if RUBY_VERSION < '1.9.3'
7
+ gem 'rake', '~> 10.0'
8
+ else
9
+ gem 'rake'
10
+ end
11
+
12
+ group :development, :test do
13
+ if RUBY_VERSION < '1.9'
14
+ gem 'test-unit', '~> 2.5'
15
+ else
16
+ gem 'test-unit'
17
+ end
18
+ end
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Iconv
2
2
 
3
- [![Build Status](https://travis-ci.org/nurse/iconv.png)](https://travis-ci.org/nurse/iconv)
3
+ [![Build Status](https://travis-ci.org/ruby/iconv.svg)](https://travis-ci.org/ruby/iconv)
4
4
 
5
5
  iconv wrapper, used to be ext/iconv
6
6
 
@@ -21,7 +21,9 @@ Which coding systems are available is platform-dependent.
21
21
 
22
22
  Add this line to your application's Gemfile:
23
23
 
24
- gem 'iconv'
24
+ ```ruby
25
+ gem 'iconv'
26
+ ```
25
27
 
26
28
  And then execute:
27
29
 
@@ -34,11 +36,11 @@ Or install it yourself as:
34
36
  ## Usage
35
37
 
36
38
  1. Simple conversion between two charsets.
37
-
38
- converted_text = Iconv.conv('iso-8859-15', 'utf-8', text)
39
-
40
- 2. Instantiate a new Iconv and use method Iconv#iconv.
41
-
39
+ ```ruby
40
+ converted_text = Iconv.conv('iso-8859-15', 'utf-8', text)
41
+ ```
42
+ 2. Instantiate a new `Iconv` and use method `Iconv#iconv`.
43
+ ```ruby
42
44
  cd = Iconv.new(to, from)
43
45
  begin
44
46
  input.each { |s| output << cd.iconv(s) }
@@ -46,23 +48,24 @@ Or install it yourself as:
46
48
  ensure
47
49
  cd.close
48
50
  end
49
-
50
- 3. Invoke Iconv.open with a block.
51
-
51
+ ```
52
+ 3. Invoke `Iconv.open` with a block.
53
+ ```ruby
52
54
  Iconv.open(to, from) do |cd|
53
55
  input.each { |s| output << cd.iconv(s) }
54
56
  output << cd.iconv(nil)
55
57
  end
56
-
58
+ ```
57
59
  4. Shorthand for (3).
58
-
60
+ ```ruby
59
61
  Iconv.iconv(to, from, *input.to_a)
62
+ ```
60
63
 
61
64
  ## Attentions
62
65
 
63
- Even if some extentions of implementation dependent are useful,
64
- DON'T USE those extentions in libraries and scripts to widely distribute.
65
- If you want to use those feature, use String#encode.
66
+ Even if some extensions of implementation dependent are useful,
67
+ DON'T USE those extensions in libraries and scripts to widely distribute.
68
+ If you want to use those feature, use `String#encode`.
66
69
 
67
70
  ## Contributing
68
71
 
@@ -124,8 +124,8 @@ rb_sys_fail_str(VALUE msg)
124
124
  *
125
125
  * == Attentions
126
126
  *
127
- * Even if some extentions of implementation dependent are useful,
128
- * DON'T USE those extentions in libraries and scripts to widely distribute.
127
+ * Even if some extensions of implementation dependent are useful,
128
+ * DON'T USE those extensions in libraries and scripts to widely distribute.
129
129
  * If you want to use those feature, use String#encode.
130
130
  */
131
131
 
@@ -1272,7 +1272,7 @@ iconv_failure_inspect(VALUE self)
1272
1272
  void
1273
1273
  Init_iconv(void)
1274
1274
  {
1275
- VALUE rb_cIconv = rb_define_class("Iconv", rb_cData);
1275
+ VALUE rb_cIconv = rb_define_class("Iconv", rb_cObject);
1276
1276
 
1277
1277
  rb_define_alloc_func(rb_cIconv, iconv_s_allocate);
1278
1278
  rb_define_singleton_method(rb_cIconv, "open", iconv_s_open, -1);
@@ -10,11 +10,12 @@ Gem::Specification.new do |gem|
10
10
  gem.email = ["naruse@airemix.jp"]
11
11
  gem.description = %q{iconv wrapper library}
12
12
  gem.summary = %q{iconv wrapper library}
13
- gem.homepage = "https://github.com/nurse/iconv"
13
+ gem.homepage = "https://github.com/ruby/iconv"
14
14
 
15
15
  gem.files = `git ls-files`.split($/)
16
16
  gem.extensions = ['ext/iconv/extconf.rb']
17
17
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
18
18
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
19
+ gem.required_ruby_version = '>= 1.8.7'
19
20
  gem.require_paths = ["lib"]
20
21
  end
@@ -1,6 +1,6 @@
1
1
  require "iconv/iconv.so"
2
2
  require "iconv/version"
3
3
 
4
- class Iconv < Data
4
+ class Iconv
5
5
  # Your code goes here...
6
6
  end
@@ -1,3 +1,3 @@
1
- class Iconv < Data
2
- VERSION = "1.0.4"
1
+ class Iconv
2
+ VERSION = "1.0.5"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iconv
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - NARUSE, Yui
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-12-08 00:00:00.000000000 Z
11
+ date: 2017-12-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: iconv wrapper library
14
14
  email:
@@ -18,8 +18,8 @@ extensions:
18
18
  - ext/iconv/extconf.rb
19
19
  extra_rdoc_files: []
20
20
  files:
21
- - .gitignore
22
- - .travis.yml
21
+ - ".gitignore"
22
+ - ".travis.yml"
23
23
  - BSDL
24
24
  - Gemfile
25
25
  - LICENSE.txt
@@ -36,7 +36,7 @@ files:
36
36
  - test/test_option.rb
37
37
  - test/test_partial.rb
38
38
  - test/utils.rb
39
- homepage: https://github.com/nurse/iconv
39
+ homepage: https://github.com/ruby/iconv
40
40
  licenses: []
41
41
  metadata: {}
42
42
  post_install_message:
@@ -45,17 +45,17 @@ require_paths:
45
45
  - lib
46
46
  required_ruby_version: !ruby/object:Gem::Requirement
47
47
  requirements:
48
- - - '>='
48
+ - - ">="
49
49
  - !ruby/object:Gem::Version
50
- version: '0'
50
+ version: 1.8.7
51
51
  required_rubygems_version: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - '>='
53
+ - - ">="
54
54
  - !ruby/object:Gem::Version
55
55
  version: '0'
56
56
  requirements: []
57
57
  rubyforge_project:
58
- rubygems_version: 2.0.2
58
+ rubygems_version: 2.6.13
59
59
  signing_key:
60
60
  specification_version: 4
61
61
  summary: iconv wrapper library
@@ -64,4 +64,3 @@ test_files:
64
64
  - test/test_option.rb
65
65
  - test/test_partial.rb
66
66
  - test/utils.rb
67
- has_rdoc: