srdperu-prawn-format 1.1.3.0 → 1.1.3.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/prawn-format.gemspec +43 -0
- metadata +62 -14
@@ -0,0 +1,43 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = %q{prawn-format}
|
5
|
+
s.version = "1.1.3.1"
|
6
|
+
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
|
+
s.authors = ["Jamis Buck","sandal","srdperu"]
|
9
|
+
s.date = %q{2009-06-17}
|
10
|
+
s.description = %q{an extension of Prawn that allows inline formatting through the use of HTML-ish tags to do inline formatting}
|
11
|
+
s.email = %q{alvaro.pereyra@srdperu.com}
|
12
|
+
s.extra_rdoc_files = ["lib/prawn/format/effects/link.rb", "lib/prawn/format/effects/underline.rb", "lib/prawn/format/instructions/base.rb", "lib/prawn/format/instructions/tag_close.rb", "lib/prawn/format/instructions/tag_open.rb", "lib/prawn/format/instructions/text.rb", "lib/prawn/format/layout_builder.rb", "lib/prawn/format/lexer.rb", "lib/prawn/format/line.rb", "lib/prawn/format/parser.rb", "lib/prawn/format/state.rb", "lib/prawn/format/text_object.rb", "lib/prawn/format/version.rb", "lib/prawn/format.rb"]
|
13
|
+
|
14
|
+
s.files = ["examples/basic-formatting.rb", "examples/christmas-carol.txt", "examples/document.rb", "examples/flowing.rb", "examples/style-classes.rb", "examples/syntax-highlighting.rb", "examples/tags.rb","lib/prawn/format/effects/link.rb", "lib/prawn/format/effects/underline.rb", "lib/prawn/format/instructions/base.rb", "lib/prawn/format/instructions/tag_close.rb", "lib/prawn/format/instructions/tag_open.rb", "lib/prawn/format/instructions/text.rb", "lib/prawn/format/layout_builder.rb", "lib/prawn/format/lexer.rb", "lib/prawn/format/line.rb", "lib/prawn/format/parser.rb", "lib/prawn/format/state.rb","lib/prawn/format/text_object.rb", "lib/prawn/format/version.rb", "lib/prawn/format.rb", "manual/html.rb", "manual/include/basics.rb", "manual/include/breaks.rb", "manual/include/custom-tags.rb","manual/include/custom-tags2.rb", "manual/include/indent.rb", "manual/include/options.rb", "manual/include/style-classes.rb", "manual/manual.txt", "manual/pdf.rb", "Rakefile", "spec/layout_builder_spec.rb", "spec/lexer_spec.rb", "spec/parser_spec.rb", "spec/spec_helper.rb", "Manifest", "prawn-format.gemspec"]
|
15
|
+
s.has_rdoc = true
|
16
|
+
s.homepage = %q{http://github.com/srdperu/prawn-format}
|
17
|
+
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Prawn-format"]
|
18
|
+
s.require_paths = ["lib"]
|
19
|
+
s.rubyforge_project = %q{prawn}
|
20
|
+
s.rubygems_version = %q{1.3.1}
|
21
|
+
s.summary = %q{An extension to the Prawn PDF generation library that allows you to use HTML-ish tags to do inline formatting.}
|
22
|
+
s.test_files = ["spec/layout_builder_spec.rb", "spec/lexer_spec.rb", "spec/parser_spec.rb"]
|
23
|
+
|
24
|
+
if s.respond_to? :specification_version then
|
25
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
26
|
+
s.specification_version = 2
|
27
|
+
|
28
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
29
|
+
s.add_runtime_dependency(%q<prawn>, [">= 0.4"])
|
30
|
+
s.add_runtime_dependency(%q<prawn>, ["< 0.5"])
|
31
|
+
s.add_development_dependency(%q<echoe>, [">= 0"])
|
32
|
+
else
|
33
|
+
s.add_dependency(%q<prawn>, [">= 0.4"])
|
34
|
+
s.add_dependency(%q<prawn>, ["< 0.5"])
|
35
|
+
s.add_dependency(%q<echoe>, [">= 0"])
|
36
|
+
end
|
37
|
+
else
|
38
|
+
s.add_dependency(%q<prawn>, [">= 0.4"])
|
39
|
+
s.add_dependency(%q<prawn>, ["< 0.5"])
|
40
|
+
s.add_dependency(%q<echoe>, [">= 0"])
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
metadata
CHANGED
@@ -1,27 +1,70 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: srdperu-prawn-format
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.3.
|
4
|
+
version: 1.1.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Jamis Buck
|
8
8
|
- sandal
|
9
|
+
- srdperu
|
9
10
|
autorequire:
|
10
11
|
bindir: bin
|
11
12
|
cert_chain: []
|
12
13
|
|
13
|
-
date: 2009-06-
|
14
|
+
date: 2009-06-17 00:00:00 -07:00
|
14
15
|
default_executable:
|
15
|
-
dependencies:
|
16
|
-
|
17
|
-
|
16
|
+
dependencies:
|
17
|
+
- !ruby/object:Gem::Dependency
|
18
|
+
name: prawn
|
19
|
+
type: :runtime
|
20
|
+
version_requirement:
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - ">="
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: "0.4"
|
26
|
+
version:
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: prawn
|
29
|
+
type: :runtime
|
30
|
+
version_requirement:
|
31
|
+
version_requirements: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - <
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: "0.5"
|
36
|
+
version:
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: echoe
|
39
|
+
type: :development
|
40
|
+
version_requirement:
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
42
|
+
requirements:
|
43
|
+
- - ">="
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: "0"
|
46
|
+
version:
|
47
|
+
description: an extension of Prawn that allows inline formatting through the use of HTML-ish tags to do inline formatting
|
18
48
|
email: alvaro.pereyra@srdperu.com
|
19
49
|
executables: []
|
20
50
|
|
21
51
|
extensions: []
|
22
52
|
|
23
|
-
extra_rdoc_files:
|
24
|
-
|
53
|
+
extra_rdoc_files:
|
54
|
+
- lib/prawn/format/effects/link.rb
|
55
|
+
- lib/prawn/format/effects/underline.rb
|
56
|
+
- lib/prawn/format/instructions/base.rb
|
57
|
+
- lib/prawn/format/instructions/tag_close.rb
|
58
|
+
- lib/prawn/format/instructions/tag_open.rb
|
59
|
+
- lib/prawn/format/instructions/text.rb
|
60
|
+
- lib/prawn/format/layout_builder.rb
|
61
|
+
- lib/prawn/format/lexer.rb
|
62
|
+
- lib/prawn/format/line.rb
|
63
|
+
- lib/prawn/format/parser.rb
|
64
|
+
- lib/prawn/format/state.rb
|
65
|
+
- lib/prawn/format/text_object.rb
|
66
|
+
- lib/prawn/format/version.rb
|
67
|
+
- lib/prawn/format.rb
|
25
68
|
files:
|
26
69
|
- examples/basic-formatting.rb
|
27
70
|
- examples/christmas-carol.txt
|
@@ -60,12 +103,15 @@ files:
|
|
60
103
|
- spec/parser_spec.rb
|
61
104
|
- spec/spec_helper.rb
|
62
105
|
- Manifest
|
63
|
-
|
106
|
+
- prawn-format.gemspec
|
107
|
+
has_rdoc: true
|
64
108
|
homepage: http://github.com/srdperu/prawn-format
|
65
109
|
post_install_message:
|
66
110
|
rdoc_options:
|
111
|
+
- --line-numbers
|
67
112
|
- --inline-source
|
68
|
-
- --
|
113
|
+
- --title
|
114
|
+
- Prawn-format
|
69
115
|
require_paths:
|
70
116
|
- lib
|
71
117
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -78,14 +124,16 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
78
124
|
requirements:
|
79
125
|
- - ">="
|
80
126
|
- !ruby/object:Gem::Version
|
81
|
-
version: "
|
127
|
+
version: "1.2"
|
82
128
|
version:
|
83
129
|
requirements: []
|
84
130
|
|
85
|
-
rubyforge_project: prawn
|
131
|
+
rubyforge_project: prawn
|
86
132
|
rubygems_version: 1.2.0
|
87
133
|
signing_key:
|
88
134
|
specification_version: 2
|
89
135
|
summary: An extension to the Prawn PDF generation library that allows you to use HTML-ish tags to do inline formatting.
|
90
|
-
test_files:
|
91
|
-
|
136
|
+
test_files:
|
137
|
+
- spec/layout_builder_spec.rb
|
138
|
+
- spec/lexer_spec.rb
|
139
|
+
- spec/parser_spec.rb
|