forked from thechrisoshow/rtf
-
Notifications
You must be signed in to change notification settings - Fork 12
/
ifad-rtf.gemspec
120 lines (115 loc) · 3.61 KB
/
ifad-rtf.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{ifad-rtf}
s.version = "0.4.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Peter Wood", "Claudio Bustos", "Marcello Barnaba"]
s.date = %q{2011-06-08}
s.description = %q{Ruby RTF is a library that can be used to create rich text format (RTF) documents. RTF is a text based standard for laying out document content.}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
"CHANGES",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION.yml",
"examples/example01.rb",
"examples/example02.rb",
"examples/example03.rb",
"examples/example03.rtf",
"examples/example04.rb",
"examples/rubyrtf.bmp",
"examples/rubyrtf.jpg",
"examples/rubyrtf.png",
"lib/rtf.rb",
"lib/rtf/colour.rb",
"lib/rtf/converters.rb",
"lib/rtf/converters/html.rb",
"lib/rtf/font.rb",
"lib/rtf/information.rb",
"lib/rtf/list.rb",
"lib/rtf/node.rb",
"lib/rtf/paper.rb",
"lib/rtf/style.rb",
"test/character_style_test.rb",
"test/colour_table_test.rb",
"test/colour_test.rb",
"test/command_node_test.rb",
"test/container_node_test.rb",
"test/document_style_test.rb",
"test/document_test.rb",
"test/fixtures/bitmap1.bmp",
"test/fixtures/bitmap2.bmp",
"test/fixtures/jpeg1.jpg",
"test/fixtures/jpeg2.jpg",
"test/fixtures/png1.png",
"test/fixtures/png2.png",
"test/font_table_test.rb",
"test/font_test.rb",
"test/footer_node_test.rb",
"test/header_node_test.rb",
"test/image_node_test.rb",
"test/information_test.rb",
"test/node_test.rb",
"test/paragraph_style_test.rb",
"test/style_test.rb",
"test/table_cell_node_test.rb",
"test/table_node_test.rb",
"test/table_row_node_test.rb",
"test/test_helper.rb",
"test/text_node_test.rb"
]
s.homepage = %q{http://github.com/ifad/rtf}
s.require_paths = ["lib"]
s.rubyforge_project = %q{ruby-statsample}
s.rubygems_version = %q{1.3.7}
s.summary = %q{Ruby library to create rich text format documents.}
s.test_files = [
"examples/example01.rb",
"examples/example02.rb",
"examples/example03.rb",
"examples/example04.rb",
"test/character_style_test.rb",
"test/colour_table_test.rb",
"test/colour_test.rb",
"test/command_node_test.rb",
"test/container_node_test.rb",
"test/document_style_test.rb",
"test/document_test.rb",
"test/font_table_test.rb",
"test/font_test.rb",
"test/footer_node_test.rb",
"test/header_node_test.rb",
"test/image_node_test.rb",
"test/information_test.rb",
"test/node_test.rb",
"test/paragraph_style_test.rb",
"test/style_test.rb",
"test/table_cell_node_test.rb",
"test/table_node_test.rb",
"test/table_row_node_test.rb",
"test/test_helper.rb",
"test/text_node_test.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<nokogiri>, ["~> 1.1"])
s.add_runtime_dependency(%q<tidy-ext>, ["~> 0.1"])
else
s.add_dependency(%q<nokogiri>, ["~> 1.1"])
s.add_dependency(%q<tidy-ext>, ["~> 0.1"])
end
else
s.add_dependency(%q<nokogiri>, ["~> 1.1"])
s.add_dependency(%q<tidy-ext>, ["~> 0.1"])
end
end