unicode-multibyte 0.1.0
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.
- data/.Rakefile.swp +0 -0
- data/.project +17 -0
- data/.unicode-multibyte.gemspec.swp +0 -0
- data/Rakefile +18 -0
- data/lib/unicodechars/multibyte/chars.rb +155 -0
- data/lib/unicodechars/multibyte/generators/generate_tables.rb +146 -0
- data/lib/unicodechars/multibyte/handlers/passthru_handler.rb +9 -0
- data/lib/unicodechars/multibyte/handlers/utf8_handler.rb +442 -0
- data/lib/unicodechars/multibyte/handlers/utf8_handler_proc.rb +44 -0
- data/lib/unicodechars/multibyte.rb +23 -0
- data/lib/unicodechars/values/unicode_tables.dat +0 -0
- data/lib/unicodechars/version.rb +9 -0
- data/lib/unicodechars.rb +1 -0
- data/setup.rb +1585 -0
- data/unicode-multibyte.gemspec +19 -0
- metadata +82 -0
@@ -0,0 +1,19 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |s|
|
5
|
+
s.name = "unicode-multibyte"
|
6
|
+
s.version = "0.1.0"
|
7
|
+
s.platform = Gem::Platform::RUBY
|
8
|
+
s.authors = ["Kevin Le"]
|
9
|
+
s.email = ["kle@ooyala.com"]
|
10
|
+
s.homepage = "http://www.ooyala.com"
|
11
|
+
s.summary = %q{Unicode characters in 1.8 without active support}
|
12
|
+
s.description = ""
|
13
|
+
ignores = []
|
14
|
+
|
15
|
+
dotfiles = Dir[".*"]
|
16
|
+
s.files = Dir["**/*"].reject {|f| File.directory?(f) || ignores.any? {|i| File.fnmatch(i, f) } } + dotfiles
|
17
|
+
|
18
|
+
s.require_paths = ["lib"]
|
19
|
+
end
|
metadata
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: unicode-multibyte
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 27
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
- 0
|
10
|
+
version: 0.1.0
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Kevin Le
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2011-12-19 00:00:00 -08:00
|
19
|
+
default_executable:
|
20
|
+
dependencies: []
|
21
|
+
|
22
|
+
description: ""
|
23
|
+
email:
|
24
|
+
- kle@ooyala.com
|
25
|
+
executables: []
|
26
|
+
|
27
|
+
extensions: []
|
28
|
+
|
29
|
+
extra_rdoc_files: []
|
30
|
+
|
31
|
+
files:
|
32
|
+
- lib/unicodechars/multibyte/chars.rb
|
33
|
+
- lib/unicodechars/multibyte/generators/generate_tables.rb
|
34
|
+
- lib/unicodechars/multibyte/handlers/passthru_handler.rb
|
35
|
+
- lib/unicodechars/multibyte/handlers/utf8_handler.rb
|
36
|
+
- lib/unicodechars/multibyte/handlers/utf8_handler_proc.rb
|
37
|
+
- lib/unicodechars/multibyte.rb
|
38
|
+
- lib/unicodechars/values/unicode_tables.dat
|
39
|
+
- lib/unicodechars/version.rb
|
40
|
+
- lib/unicodechars.rb
|
41
|
+
- Rakefile
|
42
|
+
- setup.rb
|
43
|
+
- unicode-multibyte.gemspec
|
44
|
+
- .project
|
45
|
+
- .Rakefile.swp
|
46
|
+
- .unicode-multibyte.gemspec.swp
|
47
|
+
has_rdoc: true
|
48
|
+
homepage: http://www.ooyala.com
|
49
|
+
licenses: []
|
50
|
+
|
51
|
+
post_install_message:
|
52
|
+
rdoc_options: []
|
53
|
+
|
54
|
+
require_paths:
|
55
|
+
- lib
|
56
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
hash: 3
|
62
|
+
segments:
|
63
|
+
- 0
|
64
|
+
version: "0"
|
65
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
66
|
+
none: false
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
hash: 3
|
71
|
+
segments:
|
72
|
+
- 0
|
73
|
+
version: "0"
|
74
|
+
requirements: []
|
75
|
+
|
76
|
+
rubyforge_project:
|
77
|
+
rubygems_version: 1.3.7
|
78
|
+
signing_key:
|
79
|
+
specification_version: 3
|
80
|
+
summary: Unicode characters in 1.8 without active support
|
81
|
+
test_files: []
|
82
|
+
|