webgen 0.5.13 → 0.5.14

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/ChangeLog CHANGED
@@ -1,3 +1,29 @@
1
+ commit 269c2e5b0ad3419ff5e171698f9668cc4d49d8d1
2
+ Author: Thomas Leitner <t_leitner@gmx.at>
3
+ Date: Mon Aug 9 09:03:13 2010 +0200
4
+
5
+ Some updates to prepare for release
6
+
7
+ * version updated and release notes file added
8
+ * updated used version of kramdown
9
+ * small doc fix
10
+
11
+ Rakefile
12
+ doc/source/filesystem.page
13
+ lib/webgen/version.rb
14
+ website/src/index.page
15
+ website/src/installation.page
16
+ website/src/news/index.page
17
+ website/src/news/release_0_5_14.page
18
+
19
+ commit 305421e99b590f294c1e3bfd9de974bd7fd0c050
20
+ Author: Thomas Leitner <t_leitner@gmx.at>
21
+ Date: Mon Aug 9 08:53:15 2010 +0200
22
+
23
+ Fixed problem with rdoc test (see RF#28392)
24
+
25
+ test/test_contentprocessor_rdoc.rb
26
+
1
27
  commit e3e3f23d7eb0b6400924796f580c78e8631dc141
2
28
  Author: Thomas Leitner <t_leitner@gmx.at>
3
29
  Date: Thu Jul 15 08:02:31 2010 +0200
data/Rakefile CHANGED
@@ -162,7 +162,7 @@ EOF
162
162
 
163
163
  s.files = PKG_FILES.to_a
164
164
  s.add_dependency('cmdparse', '>= 2.0.2')
165
- s.add_dependency('kramdown', '>= 0.9.0')
165
+ s.add_dependency('kramdown', '= 0.10.0')
166
166
  s.add_development_dependency('maruku', '>= 0.6.0')
167
167
  s.add_development_dependency('rake', '>= 0.8.3')
168
168
  s.add_development_dependency('ramaze', '>= 2009.04')
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.13
1
+ 0.5.14
@@ -12,7 +12,7 @@ specific directory.
12
12
 
13
13
  The first parameter for the file system source is the directory under which the to-be-used files are
14
14
  and the second, optional, parameter specifies a path pattern (see [Path
15
- Patterns](../manual.html#path-patterns) and [Dir.glob]).
15
+ Patterns](../manual.html#source-pathpattern) and [Dir.glob]).
16
16
 
17
17
  [Dir.glob]: http://ruby-doc.org/core/classes/Dir.html#M002375
18
18
 
@@ -3,6 +3,6 @@
3
3
  module Webgen
4
4
 
5
5
  # The version of webgen.
6
- VERSION = '0.5.13'
6
+ VERSION = '0.5.14'
7
7
 
8
8
  end
@@ -1,4 +1,4 @@
1
- --- pipeline:erb,tags,blocks,head,xmllint
1
+ --- pipeline:erb,tags,blocks,head
2
2
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
3
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{lang:}" lang="{lang:}">
4
4
 
@@ -13,7 +13,7 @@ class TestContentProcessorRDoc < Test::Unit::TestCase
13
13
  node = Webgen::Node.new(root, 'test', 'test')
14
14
  context = Webgen::Context.new(:content => "* hello",
15
15
  :chain => [node])
16
- assert_equal("<ul>\n<li>hello\n\n</li>\n</ul>\n", obj.call(context).content)
16
+ assert_equal("<ul>\n<li><p>\nhello\n</p>\n</li>\n</ul>\n", obj.call(context).content)
17
17
 
18
18
  def obj.require(lib); raise LoadError; end
19
19
  assert_raise(Webgen::LoadError) { obj.call(context) }
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 5
8
- - 13
9
- version: 0.5.13
8
+ - 14
9
+ version: 0.5.14
10
10
  platform: ruby
11
11
  authors:
12
12
  - Thomas Leitner
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-07-16 00:00:00 +02:00
17
+ date: 2010-08-09 00:00:00 +02:00
18
18
  default_executable: webgen
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -38,13 +38,13 @@ dependencies:
38
38
  requirement: &id002 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
- - - ">="
41
+ - - "="
42
42
  - !ruby/object:Gem::Version
43
43
  segments:
44
44
  - 0
45
- - 9
45
+ - 10
46
46
  - 0
47
- version: 0.9.0
47
+ version: 0.10.0
48
48
  type: :runtime
49
49
  version_requirements: *id002
50
50
  - !ruby/object:Gem::Dependency