ltdtemplate 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ 2014-05-20 Version 1.0.1
2
+
3
+ HTML fix in TEMPLATE_MANUAL.html.
4
+
1
5
  2014-05-07 Version 1.0.0
2
6
 
3
7
  Major rewrite to work with native types proxied into a template
data/TEMPLATE_MANUAL.html CHANGED
@@ -255,7 +255,8 @@ letters, numbers, or underscores</li>
255
255
  such as:</li>
256
256
  </ol>
257
257
 
258
- <blockquote><code>+ - * / % & | ! < <= = == != >= ></code></blockquote>
258
+ <blockquote><code>+ - * / % &amp; | ! &lt; &lt;= =
259
+ == != &gt;= &gt;</code></blockquote>
259
260
 
260
261
  <p>The parentheses are optional if no parameters are to be supplied to
261
262
  the method call. The period is optional for "operator-style" method calls
data/lib/ltdtemplate.rb CHANGED
@@ -32,7 +32,7 @@ class LtdTemplate
32
32
 
33
33
  ##################################################
34
34
 
35
- VERSION = '1.0.0'
35
+ VERSION = '1.0.1'
36
36
 
37
37
  TOKEN_MAP = {
38
38
  ?. => :dot, # method separator
data/ltdtemplate.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "ltdtemplate"
3
- s.version = "1.0.0"
3
+ s.version = "1.0.1"
4
4
  s.date = "2014-05-20"
5
5
  s.authors = ["Brian Katzung"]
6
6
  s.email = ["briank@kappacs.com"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 0
9
- version: 1.0.0
8
+ - 1
9
+ version: 1.0.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Brian Katzung