BodyBuilder 0.2.2 → 0.2.3
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/BodyBuilder.gemspec +2 -2
- data/README +6 -2
- data/lib/body_builder.rb +1 -1
- metadata +2 -2
data/BodyBuilder.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{BodyBuilder}
|
|
5
|
-
s.version = "0.2.
|
|
5
|
+
s.version = "0.2.3"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Exiquio Cooper-Anderson"]
|
|
9
|
-
s.date = %q{2012-02-
|
|
9
|
+
s.date = %q{2012-02-29}
|
|
10
10
|
s.description = %q{XHMTL 1.1 generator}
|
|
11
11
|
s.email = %q{exiquio @nospam@ gmail.com}
|
|
12
12
|
s.extra_rdoc_files = ["README", "lib/body_builder.rb", "lib/hash.rb", "lib/object.rb"]
|
data/README
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
BodyBuilder (Version 0.2.
|
|
1
|
+
BodyBuilder (Version 0.2.2)
|
|
2
2
|
|
|
3
3
|
A Ruby XHTML 1.1 Generator
|
|
4
4
|
|
|
@@ -11,17 +11,21 @@ Requirements:
|
|
|
11
11
|
|
|
12
12
|
Installation:
|
|
13
13
|
gem install BodyBuilder
|
|
14
|
+
then:
|
|
15
|
+
require 'body_builder' (you may have to require 'rubygems', I don't)
|
|
14
16
|
|
|
15
17
|
RubyGem:
|
|
16
18
|
http://rubygems.org/gems/BodyBuilder
|
|
17
19
|
|
|
18
20
|
RubyDoc:
|
|
19
|
-
http://rubydoc.info/gems/BodyBuilder/0.2.
|
|
21
|
+
http://rubydoc.info/gems/BodyBuilder/0.2.3/
|
|
20
22
|
|
|
21
23
|
Usage:
|
|
22
24
|
see readme_example.rb and test/body_builder_test.rb
|
|
23
25
|
|
|
24
26
|
Changelog:
|
|
27
|
+
*0.2.3
|
|
28
|
+
-fixed li tag... my bad
|
|
25
29
|
*0.2.2
|
|
26
30
|
-removed pointless comments
|
|
27
31
|
-fixed favicon browser compatibility
|
data/lib/body_builder.rb
CHANGED
|
@@ -155,7 +155,7 @@ module BodyBuilder
|
|
|
155
155
|
VALID_TAGS = [
|
|
156
156
|
:abbr, :acronym, :address, :blockquote, :br, :cite, :code, :dfn, :div, :em, :h1, :h2, :h3, :h4, :h5, :h6, :kbd, :p, :pre, :q, :samp, :span, :strong, :var, # Text Module
|
|
157
157
|
:a, # Hypertext Module
|
|
158
|
-
:dl, :dd, :dt, :ol, :ul, :
|
|
158
|
+
:dl, :dd, :dt, :ol, :ul, :li, # List Module
|
|
159
159
|
:object, :param, # Object Module
|
|
160
160
|
:b, :big, :hr, :i, :small, :sub, :sup, :tt, # Presentation Module
|
|
161
161
|
:del, :ins, # Edit Module
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: BodyBuilder
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-02-
|
|
12
|
+
date: 2012-02-29 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: XHMTL 1.1 generator
|
|
15
15
|
email: exiquio @nospam@ gmail.com
|