tagz 9.0.0 → 9.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,10 +1,11 @@
1
+ # -*- encoding : utf-8 -*-
1
2
  unless defined? Tagz
2
3
 
3
4
  # core tagz functions
4
5
  #
5
6
  module Tagz
6
7
  def Tagz.version()
7
- '9.0.0'
8
+ '9.1.0'
8
9
  end
9
10
 
10
11
  def Tagz.description
@@ -1,3 +1,4 @@
1
+ # -*- encoding : utf-8 -*-
1
2
  if defined?(Rails)
2
3
  #_ = ActionView, ActionView::Base, ActionController, ActionController::Base
3
4
  #ActionView::Base.send(:include, Tagz.globally)
@@ -1,3 +1,4 @@
1
+ # -*- encoding : utf-8 -*-
1
2
  #
2
3
  # in the simplest case tagz generates html using a syntax which safely mixes
3
4
  # in to any object
@@ -1,3 +1,4 @@
1
+ # -*- encoding : utf-8 -*-
1
2
  #
2
3
  # tagz.rb mixes quite easily with your favourite templating engine, avoiding
3
4
  # the need for '<% rows.each do |row| %> ... <% row.each do |cell| %> '
@@ -1,3 +1,4 @@
1
+ # -*- encoding : utf-8 -*-
1
2
  #
2
3
  # once you've learned to generate html using tagz you're primed to generate
3
4
  # xml too
@@ -1,3 +1,4 @@
1
+ # -*- encoding : utf-8 -*-
1
2
  #
2
3
  # tagz.rb doesn't cramp your style, allowing even invalid html to be
3
4
  # generated. note the use of the 'tagz' method, which can be used both to
@@ -1,3 +1,4 @@
1
+ # -*- encoding : utf-8 -*-
1
2
  #
2
3
  # tagz.rb allows a safer method of mixin which requires any tagz methods to be
3
4
  # insider a tagz block - tagz generating methods outside a tagz block with
@@ -1,3 +1,4 @@
1
+ # -*- encoding : utf-8 -*-
1
2
  #
2
3
  # tagz.rb can generate really compact html. this is great to save bandwidth
3
4
  # but can sometimes make reading the generated html a bit rough. of course
@@ -1,3 +1,4 @@
1
+ # -*- encoding : utf-8 -*-
1
2
  # tagz gives you low-level control of the output and makes even dashersized
2
3
  # xml tagz easy enough to work with
3
4
  #
@@ -3,7 +3,7 @@
3
3
 
4
4
  Gem::Specification::new do |spec|
5
5
  spec.name = "tagz"
6
- spec.version = "9.0.0"
6
+ spec.version = "9.1.0"
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"
@@ -1,3 +1,4 @@
1
+ # -*- encoding : utf-8 -*-
1
2
  #! /usr/bin/env ruby
2
3
 
3
4
  require 'test/unit'
metadata CHANGED
@@ -1,44 +1,29 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: tagz
3
- version: !ruby/object:Gem::Version
4
- hash: 87
3
+ version: !ruby/object:Gem::Version
4
+ version: 9.1.0
5
5
  prerelease:
6
- segments:
7
- - 9
8
- - 0
9
- - 0
10
- version: 9.0.0
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Ara T. Howard
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2011-03-01 00:00:00 -07:00
19
- default_executable:
12
+ date: 2011-12-29 00:00:00.000000000 Z
20
13
  dependencies: []
21
-
22
- description: |+
23
-
24
- tagz.rb is generates html, xml, or any sgml variant like a small ninja
25
- running across the backs of a herd of giraffes swatting of heads like
26
- a mark-up weedwacker. weighing in at less than 300 lines of code
27
- tagz.rb adds an html/xml/sgml syntax to ruby that is both unobtrusive,
28
- safe, and available globally to objects without the need for any
29
- builder or superfluous objects. tagz.rb is designed for applications
30
- that generate html to be able to do so easily in any context without
31
- heavyweight syntax or scoping issues, like a ninja sword through
32
- butter.
33
-
14
+ description: ! "\n tagz.rb is generates html, xml, or any sgml variant like
15
+ a small ninja\n running across the backs of a herd of giraffes swatting of
16
+ heads like\n a mark-up weedwacker. weighing in at less than 300 lines of
17
+ code\n tagz.rb adds an html/xml/sgml syntax to ruby that is both unobtrusive,\n
18
+ \ safe, and available globally to objects without the need for any\n builder
19
+ or superfluous objects. tagz.rb is designed for applications\n that generate
20
+ html to be able to do so easily in any context without\n heavyweight syntax
21
+ or scoping issues, like a ninja sword through\n butter.\n\n"
34
22
  email: ara.t.howard@gmail.com
35
23
  executables: []
36
-
37
24
  extensions: []
38
-
39
25
  extra_rdoc_files: []
40
-
41
- files:
26
+ files:
42
27
  - lib/tagz/rails.rb
43
28
  - lib/tagz.rb
44
29
  - Rakefile
@@ -53,39 +38,28 @@ files:
53
38
  - samples/g.rb
54
39
  - tagz.gemspec
55
40
  - test/tagz_test.rb
56
- has_rdoc: true
57
41
  homepage: http://github.com/ahoward/tagz
58
42
  licenses: []
59
-
60
43
  post_install_message:
61
44
  rdoc_options: []
62
-
63
- require_paths:
45
+ require_paths:
64
46
  - lib
65
- required_ruby_version: !ruby/object:Gem::Requirement
47
+ required_ruby_version: !ruby/object:Gem::Requirement
66
48
  none: false
67
- requirements:
68
- - - ">="
69
- - !ruby/object:Gem::Version
70
- hash: 3
71
- segments:
72
- - 0
73
- version: "0"
74
- required_rubygems_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ! '>='
51
+ - !ruby/object:Gem::Version
52
+ version: '0'
53
+ required_rubygems_version: !ruby/object:Gem::Requirement
75
54
  none: false
76
- requirements:
77
- - - ">="
78
- - !ruby/object:Gem::Version
79
- hash: 3
80
- segments:
81
- - 0
82
- version: "0"
55
+ requirements:
56
+ - - ! '>='
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
83
59
  requirements: []
84
-
85
60
  rubyforge_project: codeforpeople
86
- rubygems_version: 1.4.2
61
+ rubygems_version: 1.8.11
87
62
  signing_key:
88
63
  specification_version: 3
89
64
  summary: tagz
90
65
  test_files: []
91
-