htmlgrid 1.0.1 → 1.0.2
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/History.txt +4 -0
- data/lib/htmlgrid/component.rb +6 -2
- data/lib/htmlgrid/grid.rb +1 -1
- metadata +4 -4
data/History.txt
CHANGED
data/lib/htmlgrid/component.rb
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zuerich, Switzerland
|
|
23
23
|
# htmlgrid@ywesee.com, www.ywesee.com/htmlgrid
|
|
24
24
|
#
|
|
25
|
-
# HtmlGrid::Component -- htmlgrid --
|
|
25
|
+
# HtmlGrid::Component -- htmlgrid -- 23.12.2012 -- mhatakeyama@ywesee.com
|
|
26
26
|
# HtmlGrid::Component -- htmlgrid -- 23.10.2002 -- hwyss@ywesee.com
|
|
27
27
|
#++
|
|
28
28
|
|
|
@@ -176,7 +176,11 @@ module HtmlGrid
|
|
|
176
176
|
esc << if(entity = @@symbol_entities[byte])
|
|
177
177
|
'&' << entity << ';'
|
|
178
178
|
else
|
|
179
|
-
|
|
179
|
+
if RUBY_VERSION >= '1.9'
|
|
180
|
+
byte
|
|
181
|
+
else
|
|
182
|
+
byte.chr
|
|
183
|
+
end
|
|
180
184
|
end
|
|
181
185
|
}
|
|
182
186
|
esc
|
data/lib/htmlgrid/grid.rb
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
# HtmlGrid::Grid -- htmlgrid -- 09.12.2011 -- mhatakeyama@ywesee.com
|
|
26
26
|
# HtmlGrid::Grid -- htmlgrid -- 12.01.2010 -- hwyss@ywesee.com
|
|
27
27
|
begin
|
|
28
|
-
VERSION = '1.0.
|
|
28
|
+
VERSION = '1.0.2'
|
|
29
29
|
begin
|
|
30
30
|
# for gem install
|
|
31
31
|
ext_dir = File.expand_path('../../ext/htmlgrid', File.dirname(__FILE__))
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: htmlgrid
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 19
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 1.0.
|
|
9
|
+
- 2
|
|
10
|
+
version: 1.0.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Masaomi Hatakeyama, Zeno R.R. Davatz
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-12-
|
|
18
|
+
date: 2011-12-23 00:00:00 +01:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|