ludy 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES CHANGED
@@ -1,5 +1,9 @@
1
1
  = ludy changes history
2
2
 
3
+ == ludy 0.1.5, 2008.01.31
4
+
5
+ * fixed task preprocess:erubis presentation error.
6
+
3
7
  == ludy 0.1.4, 2008.01.31
4
8
 
5
9
  * added Page#begin and Page#end for real index in the data
data/README CHANGED
@@ -1,4 +1,4 @@
1
- = ludy 0.1.4
1
+ = ludy 0.1.5
2
2
  by Lin Jen-Shin (a.k.a. godfat 真常)
3
3
  strip any number: 18god29fat7029 (at] godfat32 -dooot- 20org
4
4
  http://ludy.rubyforge.org
data/Rakefile CHANGED
@@ -21,7 +21,7 @@ PROJ.description = paragraphs_of('README', 1).join("\n\n")
21
21
  PROJ.changes = paragraphs_of('CHANGES', 0..1).join("\n\n")
22
22
  PROJ.rubyforge_name = 'ludy'
23
23
 
24
- PROJ.version = '0.1.4'
24
+ PROJ.version = '0.1.5'
25
25
  PROJ.exclude << '.DS_Store' << '^tmp'
26
26
  PROJ.dependencies << 'rake'
27
27
 
@@ -14,11 +14,11 @@ namespace :preprocess do
14
14
  erb_inputs = FileList['**/*.erb']
15
15
  erb_outputs = erb_inputs.ext
16
16
 
17
- task :erb_begin do; puts "processing templates: #{erb_inputs.inspect}\n\n"; end
18
- task :end do; puts "processing done."; end
17
+ task :erb_begin do; puts "erb processing templates: #{erb_inputs.inspect}\n\n"; end
18
+ task :erb_end do; puts "processing done."; end
19
19
 
20
20
  desc 'automaticly translate all *.cpp.erb into *.cpp'
21
- task :erb => [:erb_begin, erb_outputs, :end].flatten
21
+ task :erb => [:erb_begin, erb_outputs, :erb_end].flatten
22
22
 
23
23
  def preprocess template_engine, input, output
24
24
  puts "processing... #{output}"
@@ -44,11 +44,11 @@ namespace :preprocess do
44
44
  erubis_inputs = FileList['**/*.eruby']
45
45
  erubis_outputs = erubis_inputs.ext
46
46
 
47
- task :erubis_begin do; puts "processing templates: #{erubis_inputs.inspect}\n\n"; end
48
- task :end do; puts "processing done."; end
47
+ task :erubis_begin do; puts "erubis processing templates: #{erubis_inputs.inspect}\n\n"; end
48
+ task :erubis_end do; puts "processing done."; end
49
49
 
50
50
  desc 'automaticly translate all *.cpp.eruby into *.cpp'
51
- task :erubis => [:erubis_begin, erubis_outputs, :end].flatten
51
+ task :erubis => [:erubis_begin, erubis_outputs, :erubis_end].flatten
52
52
 
53
53
  erubis_inputs.zip(erubis_outputs).each{ |input, output|
54
54
  file output => input do
data/lib/ludy.rb CHANGED
@@ -12,7 +12,7 @@ require 'rake'
12
12
  module Ludy
13
13
 
14
14
  # :stopdoc:
15
- VERSION = '0.1.4'
15
+ VERSION = '0.1.5'
16
16
  LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR
17
17
  PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR
18
18
  $LOAD_PATH << LIBPATH
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ludy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Lin Jen-Shin (a.k.a. godfat \xE7\x9C\x9F\xE5\xB8\xB8)"