htmlgrid 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/History.txt +8 -0
- data/Manifest.txt +2 -3
- data/lib/htmlgrid/component.rb +1 -1
- data/lib/htmlgrid/composite.rb +1 -1
- data/lib/htmlgrid/errormessage.rb +1 -1
- data/lib/htmlgrid/grid.rb +258 -275
- data/lib/htmlgrid/label.rb +14 -14
- data/lib/htmlgrid/list.rb +23 -23
- data/lib/htmlgrid/version.rb +1 -1
- data/test/suite.rb +0 -2
- data/test/test_add_row.rb +75 -56
- data/test/test_component.rb +3 -3
- data/test/test_composite.rb +210 -178
- data/test/test_grid.rb +19 -25
- data/test/test_helper.rb +9 -0
- data/test/test_interaction_list.rb +242 -215
- data/test/test_label.rb +4 -0
- data/test/test_list.rb +1 -7
- data/test/test_select.rb +10 -19
- metadata +18 -5
- data/LICENCE.txt +0 -515
- data/test/rebuild.rb +0 -39
data/test/rebuild.rb
DELETED
@@ -1,39 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# HtmlGrid -- HyperTextMarkupLanguage Framework
|
4
|
-
# Copyright (C) 2003 ywesee - intellectual capital connected
|
5
|
-
# Andreas Schrafl, Benjamin Fay, Hannes Wyss, Markus Huggler
|
6
|
-
#
|
7
|
-
# This library is free software; you can redistribute it and/or
|
8
|
-
# modify it under the terms of the GNU Lesser General Public
|
9
|
-
# License as published by the Free Software Foundation; either
|
10
|
-
# version 2.1 of the License, or (at your option) any later version.
|
11
|
-
#
|
12
|
-
# This library is distributed in the hope that it will be useful,
|
13
|
-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15
|
-
# Lesser General Public License for more details.
|
16
|
-
#
|
17
|
-
# You should have received a copy of the GNU Lesser General Public
|
18
|
-
# License along with this library; if not, write to the Free Software
|
19
|
-
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
20
|
-
#
|
21
|
-
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zuerich, Switzerland
|
22
|
-
# htmlgrid@ywesee.com, www.ywesee.com
|
23
|
-
#
|
24
|
-
# rebuild -- HtmlGrid -- 31.10.2003 -- hwyss@ywesee.com
|
25
|
-
|
26
|
-
$: << File.expand_path("../lib/", File.dirname(__FILE__))
|
27
|
-
$: << File.expand_path("../ext/htmlgrid", File.dirname(__FILE__))
|
28
|
-
|
29
|
-
install = File.expand_path("../install.rb", File.dirname(__FILE__))
|
30
|
-
bld_dir = File.expand_path("../ext/htmlgrid", File.dirname(__FILE__))
|
31
|
-
inst_dir = File.expand_path("..", File.dirname(__FILE__))
|
32
|
-
Dir.chdir(bld_dir){
|
33
|
-
system("make clean")
|
34
|
-
}
|
35
|
-
Dir.chdir(inst_dir) {
|
36
|
-
system("ruby #{install} config")
|
37
|
-
system("ruby #{install} setup")
|
38
|
-
}
|
39
|
-
#require 'htmlgrid'
|