kron4eg-wikicloth 0.1.3

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.
File without changes
@@ -0,0 +1,3 @@
1
+ equire 'rubygems'
2
+ require 'active_support'
3
+ require 'active_support/test_case'
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ class WikiClothTest < ActiveSupport::TestCase
4
+ # Replace this with your real tests.
5
+ test "the truth" do
6
+ assert true
7
+ end
8
+ end
@@ -0,0 +1,77 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ files = %W{
4
+ MIT-LICENSE
5
+ Rakefile
6
+ run_tests.rb
7
+ rails/init.rb
8
+ wikicloth.gemspec
9
+ README
10
+ test/wiki_cloth_test.rb
11
+ test/test_helper.rb
12
+ init.rb
13
+ lib
14
+ lib/wiki_buffer
15
+ lib/wiki_buffer/html_element.rb
16
+ lib/wiki_buffer/var.rb
17
+ lib/wiki_buffer/link.rb
18
+ lib/wiki_buffer/table.rb
19
+ lib/core_ext.rb
20
+ lib/wiki_cloth.rb
21
+ lib/wikicloth.rb
22
+ lib/wiki_buffer.rb
23
+ lib/wiki_link_handler.rb
24
+ tasks/wikicloth_tasks.rake
25
+ sample_documents
26
+ sample_documents/wiki_tables.wiki
27
+ sample_documents/tv.wiki
28
+ sample_documents/elements.wiki
29
+ sample_documents/air_force_one.wiki
30
+ sample_documents/cheatsheet.wiki
31
+ sample_documents/default.css
32
+ sample_documents/george_washington.wiki
33
+ sample_documents/wiki.png
34
+ sample_documents/random.wiki
35
+ sample_documents/pipe_trick.wiki
36
+ sample_documents/lists.wiki
37
+ sample_documents/images.wiki
38
+ }
39
+
40
+ test_files = %W{
41
+ run_tests.rb
42
+ test/test_helper.rb
43
+ test/wiki_cloth_test.rb
44
+ }
45
+
46
+ Gem::Specification.new do |s|
47
+ s.name = %q{wikicloth}
48
+ s.version = '0.1.3'
49
+
50
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
51
+ s.authors = ["nricciar"]
52
+ s.date = %q{2009-07-16}
53
+ s.description = %q{An implementation of the mediawiki markup in ruby}
54
+ s.extra_rdoc_files = %W{README MIT-LICENSE}
55
+ s.files = files
56
+ s.has_rdoc = true
57
+ s.homepage = %q{http://github.com/kron4eg/wikicloth}
58
+ s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
59
+ s.require_paths = ["lib"]
60
+ s.rubyforge_project = %q{wikicloth}
61
+ s.rubygems_version = %q{1.3.0}
62
+ s.summary = %q{An implementation of the mediawiki markup in ruby}
63
+ s.test_files = test_files
64
+
65
+ if s.respond_to? :specification_version then
66
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
67
+ s.specification_version = 2
68
+
69
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
70
+ s.add_runtime_dependency(%q<actionpack>, [">= 2.0.0"])
71
+ else
72
+ s.add_dependency(%q<actionpack>, [">= 2.0.0"])
73
+ end
74
+ else
75
+ s.add_dependency(%q<actionpack>, [">= 2.0.0"])
76
+ end
77
+ end
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: kron4eg-wikicloth
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.3
5
+ platform: ruby
6
+ authors:
7
+ - nricciar
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-07-16 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: actionpack
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 2.0.0
24
+ version:
25
+ description: An implementation of the mediawiki markup in ruby
26
+ email:
27
+ executables: []
28
+
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - README
33
+ - MIT-LICENSE
34
+ files:
35
+ - MIT-LICENSE
36
+ - Rakefile
37
+ - run_tests.rb
38
+ - rails/init.rb
39
+ - wikicloth.gemspec
40
+ - README
41
+ - test/wiki_cloth_test.rb
42
+ - test/test_helper.rb
43
+ - init.rb
44
+ - lib
45
+ - lib/wiki_buffer
46
+ - lib/wiki_buffer/html_element.rb
47
+ - lib/wiki_buffer/var.rb
48
+ - lib/wiki_buffer/link.rb
49
+ - lib/wiki_buffer/table.rb
50
+ - lib/core_ext.rb
51
+ - lib/wiki_cloth.rb
52
+ - lib/wikicloth.rb
53
+ - lib/wiki_buffer.rb
54
+ - lib/wiki_link_handler.rb
55
+ - tasks/wikicloth_tasks.rake
56
+ - sample_documents
57
+ - sample_documents/wiki_tables.wiki
58
+ - sample_documents/tv.wiki
59
+ - sample_documents/elements.wiki
60
+ - sample_documents/air_force_one.wiki
61
+ - sample_documents/cheatsheet.wiki
62
+ - sample_documents/default.css
63
+ - sample_documents/george_washington.wiki
64
+ - sample_documents/wiki.png
65
+ - sample_documents/random.wiki
66
+ - sample_documents/pipe_trick.wiki
67
+ - sample_documents/lists.wiki
68
+ - sample_documents/images.wiki
69
+ has_rdoc: true
70
+ homepage: http://github.com/kron4eg/wikicloth
71
+ licenses:
72
+ post_install_message:
73
+ rdoc_options:
74
+ - --inline-source
75
+ - --charset=UTF-8
76
+ require_paths:
77
+ - lib
78
+ required_ruby_version: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: "0"
83
+ version:
84
+ required_rubygems_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: "0"
89
+ version:
90
+ requirements: []
91
+
92
+ rubyforge_project: wikicloth
93
+ rubygems_version: 1.3.5
94
+ signing_key:
95
+ specification_version: 2
96
+ summary: An implementation of the mediawiki markup in ruby
97
+ test_files:
98
+ - run_tests.rb
99
+ - test/test_helper.rb
100
+ - test/wiki_cloth_test.rb