tagz 9.6.1 → 9.6.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/lib/tagz.rb +6 -2
- data/tagz.gemspec +1 -1
- metadata +3 -3
data/lib/tagz.rb
CHANGED
|
@@ -7,7 +7,7 @@ unless defined? Tagz
|
|
|
7
7
|
require 'cgi'
|
|
8
8
|
|
|
9
9
|
def Tagz.version()
|
|
10
|
-
'9.6.
|
|
10
|
+
'9.6.2'
|
|
11
11
|
end
|
|
12
12
|
|
|
13
13
|
def Tagz.description
|
|
@@ -536,7 +536,11 @@ unless defined? Tagz
|
|
|
536
536
|
%w( tagz tagz__ __tagz method_missing ).each{|m| module_function(m)}
|
|
537
537
|
end
|
|
538
538
|
|
|
539
|
-
def Tagz
|
|
539
|
+
def Tagz(*argv, &block)
|
|
540
|
+
(argv.empty? and block.nil?) ? ::Tagz : Tagz.tagz(*argv, &block)
|
|
541
|
+
end
|
|
542
|
+
|
|
543
|
+
def Tagz_(*argv, &block)
|
|
540
544
|
(argv.empty? and block.nil?) ? ::Tagz : Tagz.tagz(*argv, &block)
|
|
541
545
|
end
|
|
542
546
|
|
data/tagz.gemspec
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification::new do |spec|
|
|
5
5
|
spec.name = "tagz"
|
|
6
|
-
spec.version = "9.6.
|
|
6
|
+
spec.version = "9.6.2"
|
|
7
7
|
spec.platform = Gem::Platform::RUBY
|
|
8
8
|
spec.summary = "tagz"
|
|
9
9
|
spec.description = "\n tagz.rb is generates html, xml, or any sgml variant like a small ninja\n running across the backs of a herd of giraffes swatting of heads like\n a mark-up weedwacker. weighing in at less than 300 lines of code\n tagz.rb adds an html/xml/sgml syntax to ruby that is both unobtrusive,\n safe, and available globally to objects without the need for any\n builder or superfluous objects. tagz.rb is designed for applications\n that generate html to be able to do so easily in any context without\n heavyweight syntax or scoping issues, like a ninja sword through\n butter.\n\n"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tagz
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 9.6.
|
|
4
|
+
version: 9.6.2
|
|
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: 2013-01-
|
|
12
|
+
date: 2013-01-25 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: ! "\n tagz.rb is generates html, xml, or any sgml variant like
|
|
15
15
|
a small ninja\n running across the backs of a herd of giraffes swatting of
|
|
@@ -58,7 +58,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
58
58
|
version: '0'
|
|
59
59
|
requirements: []
|
|
60
60
|
rubyforge_project: codeforpeople
|
|
61
|
-
rubygems_version: 1.8.
|
|
61
|
+
rubygems_version: 1.8.23
|
|
62
62
|
signing_key:
|
|
63
63
|
specification_version: 3
|
|
64
64
|
summary: tagz
|