radiant-textile_filter-extension 1.0.0 → 1.0.1
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/textile_filter_extension.rb
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
|
+
require "RedCloth"
|
|
2
|
+
|
|
1
3
|
class TextileFilterExtension < Radiant::Extension
|
|
2
|
-
version "1.0.
|
|
4
|
+
version "1.0.1"
|
|
3
5
|
description "Allows you to compose page parts or snippets using the Textile text filter."
|
|
4
6
|
url "http://textism.com/tools/textile/"
|
|
5
7
|
|
|
8
|
+
extension_config do |config|
|
|
9
|
+
config.gem "RedCloth", :version => ">= 4.2.0"
|
|
10
|
+
end
|
|
11
|
+
|
|
6
12
|
def activate
|
|
7
13
|
TextileFilter
|
|
8
14
|
Page.send :include, TextileTags
|
|
9
15
|
end
|
|
10
|
-
end
|
|
16
|
+
end
|
metadata
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: radiant-textile_filter-extension
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
prerelease:
|
|
4
|
+
prerelease: false
|
|
6
5
|
segments:
|
|
7
6
|
- 1
|
|
8
7
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 1.0.
|
|
8
|
+
- 1
|
|
9
|
+
version: 1.0.1
|
|
11
10
|
platform: ruby
|
|
12
11
|
authors:
|
|
13
12
|
- Radiant CMS Dev Team
|
|
@@ -15,18 +14,16 @@ autorequire:
|
|
|
15
14
|
bindir: bin
|
|
16
15
|
cert_chain: []
|
|
17
16
|
|
|
18
|
-
date: 2011-
|
|
17
|
+
date: 2011-08-03 00:00:00 -05:00
|
|
19
18
|
default_executable:
|
|
20
19
|
dependencies:
|
|
21
20
|
- !ruby/object:Gem::Dependency
|
|
22
21
|
name: RedCloth
|
|
23
22
|
prerelease: false
|
|
24
23
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
24
|
requirements:
|
|
27
25
|
- - ">="
|
|
28
26
|
- !ruby/object:Gem::Version
|
|
29
|
-
hash: 55
|
|
30
27
|
segments:
|
|
31
28
|
- 4
|
|
32
29
|
- 2
|
|
@@ -63,33 +60,29 @@ has_rdoc: true
|
|
|
63
60
|
homepage: http://textism.com/tools/textile/
|
|
64
61
|
licenses: []
|
|
65
62
|
|
|
66
|
-
post_install_message: "\n Add this to your radiant project with:\n config.gem \"radiant-textile_filter-extension\", :version => \"~> 1.0.
|
|
63
|
+
post_install_message: "\n Add this to your radiant project with:\n config.gem \"radiant-textile_filter-extension\", :version => \"~> 1.0.1\"\n "
|
|
67
64
|
rdoc_options: []
|
|
68
65
|
|
|
69
66
|
require_paths:
|
|
70
67
|
- lib
|
|
71
68
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
72
|
-
none: false
|
|
73
69
|
requirements:
|
|
74
70
|
- - ">="
|
|
75
71
|
- !ruby/object:Gem::Version
|
|
76
|
-
hash: 3
|
|
77
72
|
segments:
|
|
78
73
|
- 0
|
|
79
74
|
version: "0"
|
|
80
75
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
|
-
none: false
|
|
82
76
|
requirements:
|
|
83
77
|
- - ">="
|
|
84
78
|
- !ruby/object:Gem::Version
|
|
85
|
-
hash: 3
|
|
86
79
|
segments:
|
|
87
80
|
- 0
|
|
88
81
|
version: "0"
|
|
89
82
|
requirements: []
|
|
90
83
|
|
|
91
84
|
rubyforge_project:
|
|
92
|
-
rubygems_version: 1.6
|
|
85
|
+
rubygems_version: 1.3.6
|
|
93
86
|
signing_key:
|
|
94
87
|
specification_version: 3
|
|
95
88
|
summary: Textile Filter for Radiant CMS
|