html_min 0.1.0 → 0.1.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/License.txt CHANGED
@@ -1 +1,22 @@
1
+ Copyright (c) 2009 Domen Puncer <domen@cba.si>
1
2
 
3
+ Permission is hereby granted, free of charge, to any person
4
+ obtaining a copy of this software and associated documentation
5
+ files (the "Software"), to deal in the Software without
6
+ restriction, including without limitation the rights to use,
7
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the
9
+ Software is furnished to do so, subject to the following
10
+ conditions:
11
+
12
+ The above copyright notice and this permission notice shall be
13
+ included in all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc CHANGED
@@ -27,5 +27,5 @@ This used to be a fixed part of the Riassence Framework, but it's distributed as
27
27
  == License:
28
28
 
29
29
  Author: Domen Puncer <domen@cba.si>
30
- License: BSD
30
+ License: MIT
31
31
 
data/extconf.rb CHANGED
@@ -2,4 +2,5 @@ require 'mkmf'
2
2
  create_makefile('html_min')
3
3
  system('make clean')
4
4
  system('make all')
5
+ require 'test_html_min'
5
6
 
data/html_min.c CHANGED
@@ -2,7 +2,7 @@
2
2
  * html_min - compression of whitespace. Keeps #{, ${ templates intact.
3
3
  *
4
4
  * Author: Domen Puncer <domen@cba.si>
5
- * License: BSD
5
+ * License: MIT
6
6
  *
7
7
  */
8
8
 
data/html_min.gemspec CHANGED
@@ -2,7 +2,7 @@ Gem::Specification.new do |s|
2
2
  s.name = 'html_min'
3
3
  s.author = 'Domen Puncer'
4
4
  s.email = 'domen@cba.si'
5
- s.version = '0.1.0'
5
+ s.version = '0.1.2'
6
6
  s.date = '2010-02-26'
7
7
  s.homepage = 'http://www.riassence.org/'
8
8
  s.summary = 'Riassence HTMLMin'
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 2
9
+ version: 0.1.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Domen Puncer