w2tags 0.9.68 → 0.9.69

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.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/doc/History.rdoc +5 -0
  3. data/lib/w2tags/parser.rb +4 -1
  4. metadata +39 -27
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.68
1
+ 0.9.69
@@ -2,6 +2,11 @@
2
2
 
3
3
  Below is a complete list of changes for each revision of W2TAGS.
4
4
 
5
+ == 0.9.69
6
+
7
+ === Parser
8
+ * fix bug at line: 932
9
+
5
10
  == 0.9.68
6
11
 
7
12
  === Command line
@@ -929,7 +929,10 @@ module W2Tags
929
929
  # ^ inside td
930
930
  #I think its Ok.
931
931
  def parse_get_mem
932
- if(/([\^*])([^ ]*) *([^\n]*)(\n)/ =~ @row;@rgx = $~)
932
+ if(/^ *([\^*])([^ ]*) *([^\n]*)(\n)/ =~ @row;@rgx = $~)
933
+ # BUG!!! %td{align="right"}= row[:price] * wowow => %td{align="right"}= row[:price] * wowow
934
+ # from /([\^*])([^ ]*) *([^\n]*)(\n)/
935
+ # to /^ *([\^*])([^ ]*) *([^\n]*)(\n)/
933
936
  keys,tmp,prms,opt,ends= @rgx.captures
934
937
  if opt=='!'
935
938
  opt=''
metadata CHANGED
@@ -1,24 +1,30 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: w2tags
3
- version: !ruby/object:Gem::Version
4
- version: 0.9.68
5
- prerelease:
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 9
8
+ - 69
9
+ version: 0.9.69
6
10
  platform: ruby
7
- authors:
11
+ authors:
8
12
  - widi harsojo
9
13
  autorequire:
10
14
  bindir: bin
11
15
  cert_chain: []
12
- date: 2012-09-22 00:00:00.000000000 Z
16
+
17
+ date: 2012-12-05 00:00:00 +07:00
18
+ default_executable:
13
19
  dependencies: []
14
- description: w2tags is the way to tags, a short cut / macros. when it do it use some
15
- patern define in files (HOT file) to produce tags from minimal code to become full
16
- fledge tags
20
+
21
+ description: w2tags is the way to tags, a short cut / macros. when it do it use some patern define in files (HOT file) to produce tags from minimal code to become full fledge tags
17
22
  email: wharsojo@gmail.com
18
- executables:
23
+ executables:
19
24
  - w2tags
20
25
  extensions: []
21
- extra_rdoc_files:
26
+
27
+ extra_rdoc_files:
22
28
  - README.rdoc
23
29
  - doc/W2TAGS.rdoc
24
30
  - doc/ERB.HOT.rdoc
@@ -97,7 +103,7 @@ extra_rdoc_files:
97
103
  - lib/w2tags/try/views/index.erb
98
104
  - lib/w2tags/try/views/layout.erb
99
105
  - lib/w2tags/try/views/parse.erb
100
- files:
106
+ files:
101
107
  - Manifest.txt
102
108
  - README.rdoc
103
109
  - Rakefile
@@ -250,10 +256,12 @@ files:
250
256
  - plugins/w2tags/generators/w2scaffold/templates/view_new.html.w2erb
251
257
  - plugins/w2tags/generators/w2scaffold/templates/view_show.html.erb
252
258
  - plugins/w2tags/generators/w2scaffold/templates/view_show.html.w2erb
259
+ has_rdoc: true
253
260
  homepage: http://w2tags.rubyforge.org
254
261
  licenses: []
262
+
255
263
  post_install_message:
256
- rdoc_options:
264
+ rdoc_options:
257
265
  - --line-numbers
258
266
  - --inline-source
259
267
  - -A cattr_accessor=object
@@ -262,24 +270,28 @@ rdoc_options:
262
270
  - --all
263
271
  - --main
264
272
  - README.rdoc
265
- require_paths:
273
+ require_paths:
266
274
  - lib
267
- required_ruby_version: !ruby/object:Gem::Requirement
268
- none: false
269
- requirements:
270
- - - ! '>='
271
- - !ruby/object:Gem::Version
272
- version: '0'
273
- required_rubygems_version: !ruby/object:Gem::Requirement
274
- none: false
275
- requirements:
276
- - - ! '>='
277
- - !ruby/object:Gem::Version
278
- version: '0'
275
+ required_ruby_version: !ruby/object:Gem::Requirement
276
+ requirements:
277
+ - - ">="
278
+ - !ruby/object:Gem::Version
279
+ segments:
280
+ - 0
281
+ version: "0"
282
+ required_rubygems_version: !ruby/object:Gem::Requirement
283
+ requirements:
284
+ - - ">="
285
+ - !ruby/object:Gem::Version
286
+ segments:
287
+ - 0
288
+ version: "0"
279
289
  requirements: []
290
+
280
291
  rubyforge_project: w2tags
281
- rubygems_version: 1.8.24
292
+ rubygems_version: 1.3.6
282
293
  signing_key:
283
294
  specification_version: 3
284
295
  summary: Its Way to Tags
285
296
  test_files: []
297
+