htmlgrid 1.1.0 → 1.1.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.
@@ -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'