wikitext 1.1.1 → 1.2

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.
@@ -0,0 +1,22 @@
1
+ # Copyright 2008 Wincent Colaiuta
2
+ # This program is free software: you can redistribute it and/or modify
3
+ # it under the terms of the GNU General Public License as published by
4
+ # the Free Software Foundation, either version 3 of the License, or
5
+ # (at your option) any later version.
6
+ #
7
+ # This program is distributed in the hope that it will be useful,
8
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
9
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
+ # GNU General Public License for more details.
11
+ #
12
+ # You should have received a copy of the GNU General Public License
13
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
14
+
15
+ require 'wikitext'
16
+
17
+ class NilClass
18
+ def to_wikitext
19
+ ''
20
+ end
21
+ alias :w :to_wikitext
22
+ end
@@ -16,8 +16,7 @@ require 'wikitext/string'
16
16
 
17
17
  module Wikitext
18
18
  class TemplateHandler
19
- def initialize view
20
- end
19
+ def initialize view; end
21
20
 
22
21
  def render text, locals = {}
23
22
  text.w
@@ -15,13 +15,10 @@
15
15
  require 'wikitext'
16
16
 
17
17
  class String
18
-
19
18
  def to_wikitext
20
19
  @@shared_wikitext_parser ||= Wikitext::Parser.new(:space_to_underscore => true)
21
20
  @@shared_wikitext_parser.parse wikitext_preprocess
22
21
  end
23
-
24
- # Convenience shortcut
25
22
  alias :w :to_wikitext
26
23
 
27
24
  private
@@ -31,5 +28,4 @@ private
31
28
  def wikitext_preprocess
32
29
  gsub /\b(bug|issue|request|ticket) #(\d+)/i, '[[issues/\2|\1 #\2]]'
33
30
  end
34
-
35
31
  end
@@ -13,5 +13,5 @@
13
13
  # along with this program. If not, see <http://www.gnu.org/licenses/>.
14
14
 
15
15
  module Wikitext
16
- VERSION = '1.1.1'
16
+ VERSION = '1.2'
17
17
  end # module Wikitext
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wikitext
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: "1.2"
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wincent Colaiuta
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-05-28 00:00:00 +02:00
12
+ date: 2008-09-10 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -68,6 +68,7 @@ files:
68
68
  - ext/wikitext.h
69
69
  - ext/wikitext_ragel.h
70
70
  - ext/depend
71
+ - lib/wikitext/nil_class.rb
71
72
  - lib/wikitext/rails.rb
72
73
  - lib/wikitext/string.rb
73
74
  - lib/wikitext/version.rb