rchardet19 1.3.6 → 1.3.7
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 +4 -4
- data/rchardet.gemspec +2 -2
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6b48d55a57931bec0b4780a1b5c329f9dd94a536
|
|
4
|
+
data.tar.gz: 200b37c0878bbc2ecb0ac69fd768202ad41c5bc9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a233411c03d3611c26bbdac6d0431caf44e2ad222b568a6b96d0ca7e3d583b1ce7f483ee588ffa0ba7b0578c425eacb32c1882976ff2fb13f52446fec3389821
|
|
7
|
+
data.tar.gz: 8f4efae36daf1c0bbd3f0ad6f99331b48ae25bedef2da405e5235aefb8e7231ab8f6ae8c4d9f375cec336d6cb056445add5c459271baa9cafc4a4db87732e670
|
data/rchardet.gemspec
CHANGED
|
@@ -3,13 +3,13 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "rchardet19"
|
|
6
|
-
s.version = "1.3.
|
|
6
|
+
s.version = "1.3.7"
|
|
7
7
|
s.authors = ["Jeff Hodges", "Édouard Brière", "Linus Oleander"]
|
|
8
8
|
s.email = "linus@oleander.nu"
|
|
9
9
|
s.homepage = "https://github.com/oleander/rchardet"
|
|
10
10
|
s.platform = Gem::Platform::RUBY
|
|
11
11
|
s.summary = "Ruby 1.9 compatible character encoding auto-detection library"
|
|
12
|
-
s.description = "
|
|
12
|
+
s.description = "Ruby 1.9 compatible character encoding auto-detection library. This library is a port of the auto-detection code in Mozilla. It means taking a sequence of bytes in an unknown character encoding, and attempting to determine the encoding so you can read the text. It’s like cracking a code when you don’t have the decryption key."
|
|
13
13
|
s.files = `git ls-files`.split("\n")
|
|
14
14
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
15
15
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rchardet19
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jeff Hodges
|
|
@@ -26,10 +26,11 @@ dependencies:
|
|
|
26
26
|
- - ">="
|
|
27
27
|
- !ruby/object:Gem::Version
|
|
28
28
|
version: '0'
|
|
29
|
-
description:
|
|
30
|
-
the auto-detection code in Mozilla. It means taking a sequence of bytes
|
|
31
|
-
character encoding, and attempting to determine the encoding so you
|
|
32
|
-
text. It’s like cracking a code when you don’t have the decryption
|
|
29
|
+
description: Ruby 1.9 compatible character encoding auto-detection library. This library
|
|
30
|
+
is a port of the auto-detection code in Mozilla. It means taking a sequence of bytes
|
|
31
|
+
in an unknown character encoding, and attempting to determine the encoding so you
|
|
32
|
+
can read the text. It’s like cracking a code when you don’t have the decryption
|
|
33
|
+
key.
|
|
33
34
|
email: linus@oleander.nu
|
|
34
35
|
executables: []
|
|
35
36
|
extensions: []
|