forked from gmccreight/wikicreole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wikicreole.gemspec
executable file
·54 lines (46 loc) · 1.55 KB
/
wikicreole.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# -*- encoding: utf-8 -*-
# We use github to build this gem
# See http://gems.github.com/
files = %W{
README
Changelog
COPYING
LICENSE
Rakefile
lib/wiki_creole.rb
}
test_files = %W{
test/profiling.rb
test/test_release_attributes.rb
test/test_all.rb
test/test_amp.markup test/test_amp.html
test/test_block.markup test/test_block.html
test/test_escape.markup test/test_escape.html
test/test_inline.markup test/test_inline.html
test/test_jsp_wiki.markup test/test_jsp_wiki.html
test/test_nested_lists.markup test/test_nested_lists.html
test/test_specialchars.markup test/test_specialchars.html
}
Gem::Specification.new do |s|
s.name = %q{WikiCreole}
s.version = %q{0.1.5}
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Gordon McCreight"]
s.date = %q{2009-08-12}
s.description = %q{A Creole-to-XHTML converter written in pure Ruby}
s.email = %q{[email protected]}
s.extra_rdoc_files = %W{README LICENSE}
s.files = files
s.has_rdoc = true
s.homepage = %q{http://github.com/gmccreight/wikicreole/}
s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{wikicreole}
s.rubygems_version = %q{1.3.0}
s.summary = %q{A Creole-to-XHTML converter written in pure Ruby}
s.test_files = test_files
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
end
end