rodf 0.3.7 → 1.0.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +18 -0
- data/README.md +132 -62
- data/Rakefile +4 -19
- data/lib/{odf → rodf}/cell.rb +48 -27
- data/lib/{odf → rodf}/column.rb +1 -2
- data/lib/{odf → rodf}/compatibility.rb +0 -0
- data/lib/{odf → rodf}/container.rb +1 -4
- data/lib/{odf → rodf}/data_style.rb +3 -5
- data/lib/{odf → rodf}/document.rb +4 -6
- data/lib/{odf → rodf}/hyperlink.rb +2 -3
- data/lib/{odf → rodf}/master_page.rb +1 -2
- data/lib/{odf → rodf}/page_layout.rb +3 -4
- data/lib/{odf → rodf}/paragraph.rb +2 -3
- data/lib/{odf → rodf}/paragraph_container.rb +2 -3
- data/lib/{odf → rodf}/property.rb +9 -10
- data/lib/{odf → rodf}/row.rb +3 -4
- data/lib/{odf → rodf}/skeleton/manifest.xml.erb +0 -0
- data/lib/{odf → rodf}/skeleton/styles.pxml +0 -0
- data/lib/{odf → rodf}/skeleton.rb +1 -1
- data/lib/{odf → rodf}/span.rb +5 -4
- data/lib/{odf → rodf}/spreadsheet.rb +7 -12
- data/lib/{odf → rodf}/style.rb +4 -5
- data/lib/{odf → rodf}/style_section.rb +1 -3
- data/lib/{odf → rodf}/tab.rb +2 -3
- data/lib/{odf → rodf}/table.rb +4 -5
- data/lib/{odf → rodf}/text.rb +8 -10
- data/lib/rodf/version.rb +3 -0
- data/lib/rodf.rb +6 -0
- metadata +85 -108
- data/CHANGELOG +0 -17
- data/Gemfile +0 -9
- data/Manifest +0 -48
- data/rodf.gemspec +0 -48
- data/spec/cell_spec.rb +0 -189
- data/spec/data_style_spec.rb +0 -61
- data/spec/file_storage_spec.rb +0 -47
- data/spec/hyperlink_spec.rb +0 -62
- data/spec/master_page_spec.rb +0 -35
- data/spec/page_layout_spec.rb +0 -45
- data/spec/paragraph_spec.rb +0 -75
- data/spec/property_spec.rb +0 -270
- data/spec/row_spec.rb +0 -59
- data/spec/skeleton_spec.rb +0 -33
- data/spec/span_spec.rb +0 -65
- data/spec/spec_helper.rb +0 -23
- data/spec/spreadsheet_spec.rb +0 -123
- data/spec/style_section_spec.rb +0 -42
- data/spec/style_spec.rb +0 -109
- data/spec/tab_spec.rb +0 -34
- data/spec/table_spec.rb +0 -90
- data/spec/text_spec.rb +0 -79
@@ -15,24 +15,20 @@
|
|
15
15
|
# You should have received a copy of the GNU Lesser General Public License
|
16
16
|
# along with rODF. If not, see <http://www.gnu.org/licenses/>.
|
17
17
|
|
18
|
-
require '
|
18
|
+
require 'rodf/data_style'
|
19
|
+
require 'rodf/document'
|
20
|
+
require 'rodf/hyperlink'
|
21
|
+
require 'rodf/span'
|
22
|
+
require 'rodf/table'
|
19
23
|
|
20
|
-
|
21
|
-
|
22
|
-
require 'odf/data_style'
|
23
|
-
require 'odf/document'
|
24
|
-
require 'odf/hyperlink'
|
25
|
-
require 'odf/span'
|
26
|
-
require 'odf/table'
|
27
|
-
|
28
|
-
module ODF
|
24
|
+
module RODF
|
29
25
|
class Spreadsheet < Document
|
30
26
|
contains :tables, :data_styles
|
31
27
|
|
32
28
|
def xml
|
33
29
|
b = Builder::XmlMarkup.new
|
34
30
|
|
35
|
-
b.instruct! :xml, :
|
31
|
+
b.instruct! :xml, version: '1.0', encoding: 'UTF-8'
|
36
32
|
b.tag! 'office:document-content',
|
37
33
|
'xmlns:office' => "urn:oasis:names:tc:opendocument:xmlns:office:1.0",
|
38
34
|
'xmlns:table' => "urn:oasis:names:tc:opendocument:xmlns:table:1.0",
|
@@ -61,4 +57,3 @@ module ODF
|
|
61
57
|
|
62
58
|
SpreadSheet = Spreadsheet
|
63
59
|
end
|
64
|
-
|
data/lib/{odf → rodf}/style.rb
RENAMED
@@ -15,17 +15,16 @@
|
|
15
15
|
# You should have received a copy of the GNU Lesser General Public License
|
16
16
|
# along with rODF. If not, see <http://www.gnu.org/licenses/>.
|
17
17
|
|
18
|
-
require 'rubygems'
|
19
18
|
require 'builder'
|
20
19
|
|
21
|
-
require '
|
22
|
-
require '
|
20
|
+
require 'rodf/container'
|
21
|
+
require 'rodf/property'
|
23
22
|
|
24
|
-
module
|
23
|
+
module RODF
|
25
24
|
class Style < Container
|
26
25
|
contains :properties
|
27
26
|
|
28
|
-
FAMILIES = {:
|
27
|
+
FAMILIES = {cell: 'table-cell', column: 'table-column', row: 'table-row'}
|
29
28
|
|
30
29
|
def initialize(name='', opts={}, node_tag='style:style')
|
31
30
|
@name, @node_tag = name, node_tag
|
@@ -15,11 +15,9 @@
|
|
15
15
|
# You should have received a copy of the GNU Lesser General Public License
|
16
16
|
# along with rODF. If not, see <http://www.gnu.org/licenses/>.
|
17
17
|
|
18
|
-
require 'rubygems'
|
19
|
-
|
20
18
|
require 'builder'
|
21
19
|
|
22
|
-
module
|
20
|
+
module RODF
|
23
21
|
class StyleSection
|
24
22
|
def initialize(type, second = {})
|
25
23
|
@type = type
|
data/lib/{odf → rodf}/tab.rb
RENAMED
@@ -15,12 +15,11 @@
|
|
15
15
|
# You should have received a copy of the GNU Lesser General Public License
|
16
16
|
# along with rODF. If not, see <http://www.gnu.org/licenses/>.
|
17
17
|
|
18
|
-
require 'rubygems'
|
19
18
|
require 'builder'
|
20
19
|
|
21
|
-
require '
|
20
|
+
require 'rodf/paragraph_container'
|
22
21
|
|
23
|
-
module
|
22
|
+
module RODF
|
24
23
|
class Tab
|
25
24
|
def xml
|
26
25
|
Builder::XmlMarkup.new.text:tab
|
data/lib/{odf → rodf}/table.rb
RENAMED
@@ -15,14 +15,13 @@
|
|
15
15
|
# You should have received a copy of the GNU Lesser General Public License
|
16
16
|
# along with rODF. If not, see <http://www.gnu.org/licenses/>.
|
17
17
|
|
18
|
-
require 'rubygems'
|
19
18
|
require 'builder'
|
20
19
|
|
21
|
-
require '
|
22
|
-
require '
|
23
|
-
require '
|
20
|
+
require 'rodf/column'
|
21
|
+
require 'rodf/container'
|
22
|
+
require 'rodf/row'
|
24
23
|
|
25
|
-
module
|
24
|
+
module RODF
|
26
25
|
class Table < Container
|
27
26
|
contains :rows, :columns
|
28
27
|
|
data/lib/{odf → rodf}/text.rb
RENAMED
@@ -15,18 +15,16 @@
|
|
15
15
|
# You should have received a copy of the GNU Lesser General Public License
|
16
16
|
# along with rODF. If not, see <http://www.gnu.org/licenses/>.
|
17
17
|
|
18
|
-
require 'rubygems'
|
19
|
-
|
20
18
|
require 'builder'
|
21
19
|
|
22
|
-
require '
|
23
|
-
require '
|
24
|
-
require '
|
25
|
-
require '
|
26
|
-
require '
|
27
|
-
require '
|
20
|
+
require 'rodf/document'
|
21
|
+
require 'rodf/master_page'
|
22
|
+
require 'rodf/page_layout'
|
23
|
+
require 'rodf/paragraph'
|
24
|
+
require 'rodf/span'
|
25
|
+
require 'rodf/hyperlink'
|
28
26
|
|
29
|
-
module
|
27
|
+
module RODF
|
30
28
|
class Text < Document
|
31
29
|
contains :paragraphs, :page_layouts, :master_pages
|
32
30
|
|
@@ -35,7 +33,7 @@ module ODF
|
|
35
33
|
def xml
|
36
34
|
b = Builder::XmlMarkup.new
|
37
35
|
|
38
|
-
b.instruct! :xml, :
|
36
|
+
b.instruct! :xml, version: '1.0', encoding: 'UTF-8'
|
39
37
|
b.tag! 'office:document-content', 'xmlns:office' => "urn:oasis:names:tc:opendocument:xmlns:office:1.0",
|
40
38
|
'xmlns:table' => "urn:oasis:names:tc:opendocument:xmlns:table:1.0",
|
41
39
|
'xmlns:text' => "urn:oasis:names:tc:opendocument:xmlns:text:1.0",
|
data/lib/rodf/version.rb
ADDED
data/lib/rodf.rb
ADDED
metadata
CHANGED
@@ -1,41 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rodf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Weston Ganger
|
7
|
+
- Weston Ganger
|
8
|
+
- Thiago Arrais
|
9
|
+
- Foivos Zakkak
|
8
10
|
autorequire:
|
9
11
|
bindir: bin
|
10
12
|
cert_chain: []
|
11
|
-
date: 2016-
|
13
|
+
date: 2016-12-03 00:00:00.000000000 Z
|
12
14
|
dependencies:
|
13
15
|
- !ruby/object:Gem::Dependency
|
14
16
|
name: builder
|
15
17
|
requirement: !ruby/object:Gem::Requirement
|
16
18
|
requirements:
|
17
|
-
- - "
|
19
|
+
- - ">="
|
18
20
|
- !ruby/object:Gem::Version
|
19
21
|
version: '3.0'
|
20
22
|
type: :runtime
|
21
23
|
prerelease: false
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
23
25
|
requirements:
|
24
|
-
- - "
|
26
|
+
- - ">="
|
25
27
|
- !ruby/object:Gem::Version
|
26
28
|
version: '3.0'
|
27
29
|
- !ruby/object:Gem::Dependency
|
28
30
|
name: rubyzip
|
29
31
|
requirement: !ruby/object:Gem::Requirement
|
30
32
|
requirements:
|
31
|
-
- - "
|
33
|
+
- - ">="
|
32
34
|
- !ruby/object:Gem::Version
|
33
35
|
version: '1.0'
|
34
36
|
type: :runtime
|
35
37
|
prerelease: false
|
36
38
|
version_requirements: !ruby/object:Gem::Requirement
|
37
39
|
requirements:
|
38
|
-
- - "
|
40
|
+
- - ">="
|
39
41
|
- !ruby/object:Gem::Version
|
40
42
|
version: '1.0'
|
41
43
|
- !ruby/object:Gem::Dependency
|
@@ -45,9 +47,6 @@ dependencies:
|
|
45
47
|
- - ">="
|
46
48
|
- !ruby/object:Gem::Version
|
47
49
|
version: '3.0'
|
48
|
-
- - "<"
|
49
|
-
- !ruby/object:Gem::Version
|
50
|
-
version: '6.0'
|
51
50
|
type: :runtime
|
52
51
|
prerelease: false
|
53
52
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -55,157 +54,135 @@ dependencies:
|
|
55
54
|
- - ">="
|
56
55
|
- !ruby/object:Gem::Version
|
57
56
|
version: '3.0'
|
58
|
-
|
57
|
+
- !ruby/object:Gem::Dependency
|
58
|
+
name: rake
|
59
|
+
requirement: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '0'
|
64
|
+
type: :development
|
65
|
+
prerelease: false
|
66
|
+
version_requirements: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
59
69
|
- !ruby/object:Gem::Version
|
60
|
-
version: '
|
70
|
+
version: '0'
|
71
|
+
- !ruby/object:Gem::Dependency
|
72
|
+
name: bundler
|
73
|
+
requirement: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - ">="
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
type: :development
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '0'
|
61
85
|
- !ruby/object:Gem::Dependency
|
62
86
|
name: rspec
|
63
87
|
requirement: !ruby/object:Gem::Requirement
|
64
88
|
requirements:
|
65
|
-
- - "
|
89
|
+
- - ">="
|
66
90
|
- !ruby/object:Gem::Version
|
67
91
|
version: '2.9'
|
68
92
|
type: :development
|
69
93
|
prerelease: false
|
70
94
|
version_requirements: !ruby/object:Gem::Requirement
|
71
95
|
requirements:
|
72
|
-
- - "
|
96
|
+
- - ">="
|
73
97
|
- !ruby/object:Gem::Version
|
74
98
|
version: '2.9'
|
75
99
|
- !ruby/object:Gem::Dependency
|
76
|
-
name:
|
100
|
+
name: hpricot
|
77
101
|
requirement: !ruby/object:Gem::Requirement
|
78
102
|
requirements:
|
79
|
-
- - "
|
103
|
+
- - ">="
|
80
104
|
- !ruby/object:Gem::Version
|
81
|
-
version:
|
105
|
+
version: 0.8.6
|
82
106
|
type: :development
|
83
107
|
prerelease: false
|
84
108
|
version_requirements: !ruby/object:Gem::Requirement
|
85
109
|
requirements:
|
86
|
-
- - "
|
110
|
+
- - ">="
|
87
111
|
- !ruby/object:Gem::Version
|
88
|
-
version:
|
112
|
+
version: 0.8.6
|
89
113
|
- !ruby/object:Gem::Dependency
|
90
|
-
name:
|
114
|
+
name: rspec_hpricot_matchers
|
91
115
|
requirement: !ruby/object:Gem::Requirement
|
92
116
|
requirements:
|
93
|
-
- - "
|
117
|
+
- - ">="
|
94
118
|
- !ruby/object:Gem::Version
|
95
|
-
version: '
|
119
|
+
version: '1.0'
|
96
120
|
type: :development
|
97
121
|
prerelease: false
|
98
122
|
version_requirements: !ruby/object:Gem::Requirement
|
99
123
|
requirements:
|
100
|
-
- - "
|
124
|
+
- - ">="
|
101
125
|
- !ruby/object:Gem::Version
|
102
|
-
version: '
|
126
|
+
version: '1.0'
|
103
127
|
description: ODF generation library for Ruby
|
104
|
-
email:
|
128
|
+
email:
|
129
|
+
- westonganger
|
130
|
+
- thiago.arrais@gmail.com
|
105
131
|
executables: []
|
106
132
|
extensions: []
|
107
|
-
extra_rdoc_files:
|
108
|
-
- CHANGELOG
|
109
|
-
- LICENSE.LGPL
|
110
|
-
- README.md
|
111
|
-
- lib/odf/cell.rb
|
112
|
-
- lib/odf/column.rb
|
113
|
-
- lib/odf/compatibility.rb
|
114
|
-
- lib/odf/container.rb
|
115
|
-
- lib/odf/data_style.rb
|
116
|
-
- lib/odf/document.rb
|
117
|
-
- lib/odf/hyperlink.rb
|
118
|
-
- lib/odf/master_page.rb
|
119
|
-
- lib/odf/page_layout.rb
|
120
|
-
- lib/odf/paragraph.rb
|
121
|
-
- lib/odf/paragraph_container.rb
|
122
|
-
- lib/odf/property.rb
|
123
|
-
- lib/odf/row.rb
|
124
|
-
- lib/odf/skeleton.rb
|
125
|
-
- lib/odf/skeleton/manifest.xml.erb
|
126
|
-
- lib/odf/skeleton/styles.pxml
|
127
|
-
- lib/odf/span.rb
|
128
|
-
- lib/odf/spreadsheet.rb
|
129
|
-
- lib/odf/style.rb
|
130
|
-
- lib/odf/style_section.rb
|
131
|
-
- lib/odf/tab.rb
|
132
|
-
- lib/odf/table.rb
|
133
|
-
- lib/odf/text.rb
|
133
|
+
extra_rdoc_files: []
|
134
134
|
files:
|
135
|
-
- CHANGELOG
|
136
|
-
- Gemfile
|
135
|
+
- CHANGELOG.md
|
137
136
|
- LICENSE.LGPL
|
138
|
-
- Manifest
|
139
137
|
- README.md
|
140
138
|
- Rakefile
|
141
|
-
- lib/
|
142
|
-
- lib/
|
143
|
-
- lib/
|
144
|
-
- lib/
|
145
|
-
- lib/
|
146
|
-
- lib/
|
147
|
-
- lib/
|
148
|
-
- lib/
|
149
|
-
- lib/
|
150
|
-
- lib/
|
151
|
-
- lib/
|
152
|
-
- lib/
|
153
|
-
- lib/
|
154
|
-
- lib/
|
155
|
-
- lib/
|
156
|
-
- lib/
|
157
|
-
- lib/
|
158
|
-
- lib/
|
159
|
-
- lib/
|
160
|
-
- lib/
|
161
|
-
- lib/
|
162
|
-
- lib/
|
163
|
-
- lib/
|
164
|
-
- rodf.
|
165
|
-
-
|
166
|
-
|
167
|
-
- spec/file_storage_spec.rb
|
168
|
-
- spec/hyperlink_spec.rb
|
169
|
-
- spec/master_page_spec.rb
|
170
|
-
- spec/page_layout_spec.rb
|
171
|
-
- spec/paragraph_spec.rb
|
172
|
-
- spec/property_spec.rb
|
173
|
-
- spec/row_spec.rb
|
174
|
-
- spec/skeleton_spec.rb
|
175
|
-
- spec/span_spec.rb
|
176
|
-
- spec/spec_helper.rb
|
177
|
-
- spec/spreadsheet_spec.rb
|
178
|
-
- spec/style_section_spec.rb
|
179
|
-
- spec/style_spec.rb
|
180
|
-
- spec/tab_spec.rb
|
181
|
-
- spec/table_spec.rb
|
182
|
-
- spec/text_spec.rb
|
183
|
-
homepage: http://github.com/thiagoarrais/rodf/tree
|
139
|
+
- lib/rodf.rb
|
140
|
+
- lib/rodf/cell.rb
|
141
|
+
- lib/rodf/column.rb
|
142
|
+
- lib/rodf/compatibility.rb
|
143
|
+
- lib/rodf/container.rb
|
144
|
+
- lib/rodf/data_style.rb
|
145
|
+
- lib/rodf/document.rb
|
146
|
+
- lib/rodf/hyperlink.rb
|
147
|
+
- lib/rodf/master_page.rb
|
148
|
+
- lib/rodf/page_layout.rb
|
149
|
+
- lib/rodf/paragraph.rb
|
150
|
+
- lib/rodf/paragraph_container.rb
|
151
|
+
- lib/rodf/property.rb
|
152
|
+
- lib/rodf/row.rb
|
153
|
+
- lib/rodf/skeleton.rb
|
154
|
+
- lib/rodf/skeleton/manifest.xml.erb
|
155
|
+
- lib/rodf/skeleton/styles.pxml
|
156
|
+
- lib/rodf/span.rb
|
157
|
+
- lib/rodf/spreadsheet.rb
|
158
|
+
- lib/rodf/style.rb
|
159
|
+
- lib/rodf/style_section.rb
|
160
|
+
- lib/rodf/tab.rb
|
161
|
+
- lib/rodf/table.rb
|
162
|
+
- lib/rodf/text.rb
|
163
|
+
- lib/rodf/version.rb
|
164
|
+
homepage: https://github.com/thiagoarrais/rodf
|
184
165
|
licenses: []
|
185
166
|
metadata: {}
|
186
167
|
post_install_message:
|
187
|
-
rdoc_options:
|
188
|
-
- "--line-numbers"
|
189
|
-
- "--title"
|
190
|
-
- Rodf
|
191
|
-
- "--main"
|
192
|
-
- README.md
|
168
|
+
rdoc_options: []
|
193
169
|
require_paths:
|
194
170
|
- lib
|
195
171
|
required_ruby_version: !ruby/object:Gem::Requirement
|
196
172
|
requirements:
|
197
173
|
- - ">="
|
198
174
|
- !ruby/object:Gem::Version
|
199
|
-
version:
|
175
|
+
version: 1.9.3
|
200
176
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
201
177
|
requirements:
|
202
178
|
- - ">="
|
203
179
|
- !ruby/object:Gem::Version
|
204
|
-
version: '
|
180
|
+
version: '0'
|
205
181
|
requirements: []
|
206
|
-
rubyforge_project:
|
182
|
+
rubyforge_project:
|
207
183
|
rubygems_version: 2.5.1
|
208
184
|
signing_key:
|
209
185
|
specification_version: 4
|
210
|
-
summary:
|
186
|
+
summary: This is a library for writing to ODF output from Ruby. It mainly focuses
|
187
|
+
creating ODS spreadsheets.
|
211
188
|
test_files: []
|
data/CHANGELOG
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
v0.3.7 Update dependencies for Rails 5
|
2
|
-
v0.3.6. Resulting ODF files as bitstrings
|
3
|
-
v0.3.5. Allows current libraries
|
4
|
-
v0.3.4. Procedural cell styling
|
5
|
-
v0.3.3. Documents can now write themselves to disk
|
6
|
-
v0.3.2. Fixes broken styles.xml
|
7
|
-
v0.3.1. Adds support for conditional formatting
|
8
|
-
v0.3. Allow parameterless blocks
|
9
|
-
v0.2.2. Reintroduce compatibility with Ruby 1.8
|
10
|
-
v0.2.1. Update to newer libraries and Ruby 1.9
|
11
|
-
v0.1.6. Fix date handling
|
12
|
-
v0.1.5. Bug fix
|
13
|
-
v0.1.4. Allow the setting of an entire cell's content to a hyperlink (by Merul Patel)
|
14
|
-
v0.1.3. Dependency fix (by Merul Patel)
|
15
|
-
v0.1.2. Cell span
|
16
|
-
v0.1.1. Basic spreadsheet styling support
|
17
|
-
v0.1. First version with very basic support for spreadsheet generation
|
data/Gemfile
DELETED
data/Manifest
DELETED
@@ -1,48 +0,0 @@
|
|
1
|
-
CHANGELOG
|
2
|
-
Gemfile
|
3
|
-
LICENSE.LGPL
|
4
|
-
Manifest
|
5
|
-
README.md
|
6
|
-
Rakefile
|
7
|
-
lib/odf/cell.rb
|
8
|
-
lib/odf/column.rb
|
9
|
-
lib/odf/compatibility.rb
|
10
|
-
lib/odf/container.rb
|
11
|
-
lib/odf/data_style.rb
|
12
|
-
lib/odf/document.rb
|
13
|
-
lib/odf/hyperlink.rb
|
14
|
-
lib/odf/master_page.rb
|
15
|
-
lib/odf/page_layout.rb
|
16
|
-
lib/odf/paragraph.rb
|
17
|
-
lib/odf/paragraph_container.rb
|
18
|
-
lib/odf/property.rb
|
19
|
-
lib/odf/row.rb
|
20
|
-
lib/odf/skeleton.rb
|
21
|
-
lib/odf/skeleton/manifest.xml.erb
|
22
|
-
lib/odf/skeleton/styles.pxml
|
23
|
-
lib/odf/span.rb
|
24
|
-
lib/odf/spreadsheet.rb
|
25
|
-
lib/odf/style.rb
|
26
|
-
lib/odf/style_section.rb
|
27
|
-
lib/odf/tab.rb
|
28
|
-
lib/odf/table.rb
|
29
|
-
lib/odf/text.rb
|
30
|
-
rodf.gemspec
|
31
|
-
spec/cell_spec.rb
|
32
|
-
spec/data_style_spec.rb
|
33
|
-
spec/file_storage_spec.rb
|
34
|
-
spec/hyperlink_spec.rb
|
35
|
-
spec/master_page_spec.rb
|
36
|
-
spec/page_layout_spec.rb
|
37
|
-
spec/paragraph_spec.rb
|
38
|
-
spec/property_spec.rb
|
39
|
-
spec/row_spec.rb
|
40
|
-
spec/skeleton_spec.rb
|
41
|
-
spec/span_spec.rb
|
42
|
-
spec/spec_helper.rb
|
43
|
-
spec/spreadsheet_spec.rb
|
44
|
-
spec/style_section_spec.rb
|
45
|
-
spec/style_spec.rb
|
46
|
-
spec/tab_spec.rb
|
47
|
-
spec/table_spec.rb
|
48
|
-
spec/text_spec.rb
|
data/rodf.gemspec
DELETED
@@ -1,48 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
# stub: rodf 0.3.7 ruby lib
|
3
|
-
|
4
|
-
Gem::Specification.new do |s|
|
5
|
-
s.name = "rodf"
|
6
|
-
s.version = "0.3.7"
|
7
|
-
|
8
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
9
|
-
s.require_paths = ["lib"]
|
10
|
-
s.authors = ["Weston Ganger, Thiago Arrais, Foivos Zakkak"]
|
11
|
-
s.date = "2016-08-30"
|
12
|
-
s.description = "ODF generation library for Ruby"
|
13
|
-
s.email = "thiago.arrais@gmail.com"
|
14
|
-
s.extra_rdoc_files = ["CHANGELOG", "LICENSE.LGPL", "README.md", "lib/odf/cell.rb", "lib/odf/column.rb", "lib/odf/compatibility.rb", "lib/odf/container.rb", "lib/odf/data_style.rb", "lib/odf/document.rb", "lib/odf/hyperlink.rb", "lib/odf/master_page.rb", "lib/odf/page_layout.rb", "lib/odf/paragraph.rb", "lib/odf/paragraph_container.rb", "lib/odf/property.rb", "lib/odf/row.rb", "lib/odf/skeleton.rb", "lib/odf/skeleton/manifest.xml.erb", "lib/odf/skeleton/styles.pxml", "lib/odf/span.rb", "lib/odf/spreadsheet.rb", "lib/odf/style.rb", "lib/odf/style_section.rb", "lib/odf/tab.rb", "lib/odf/table.rb", "lib/odf/text.rb"]
|
15
|
-
s.files = ["CHANGELOG", "Gemfile", "LICENSE.LGPL", "Manifest", "README.md", "Rakefile", "lib/odf/cell.rb", "lib/odf/column.rb", "lib/odf/compatibility.rb", "lib/odf/container.rb", "lib/odf/data_style.rb", "lib/odf/document.rb", "lib/odf/hyperlink.rb", "lib/odf/master_page.rb", "lib/odf/page_layout.rb", "lib/odf/paragraph.rb", "lib/odf/paragraph_container.rb", "lib/odf/property.rb", "lib/odf/row.rb", "lib/odf/skeleton.rb", "lib/odf/skeleton/manifest.xml.erb", "lib/odf/skeleton/styles.pxml", "lib/odf/span.rb", "lib/odf/spreadsheet.rb", "lib/odf/style.rb", "lib/odf/style_section.rb", "lib/odf/tab.rb", "lib/odf/table.rb", "lib/odf/text.rb", "rodf.gemspec", "spec/cell_spec.rb", "spec/data_style_spec.rb", "spec/file_storage_spec.rb", "spec/hyperlink_spec.rb", "spec/master_page_spec.rb", "spec/page_layout_spec.rb", "spec/paragraph_spec.rb", "spec/property_spec.rb", "spec/row_spec.rb", "spec/skeleton_spec.rb", "spec/span_spec.rb", "spec/spec_helper.rb", "spec/spreadsheet_spec.rb", "spec/style_section_spec.rb", "spec/style_spec.rb", "spec/tab_spec.rb", "spec/table_spec.rb", "spec/text_spec.rb"]
|
16
|
-
s.homepage = "http://github.com/thiagoarrais/rodf/tree"
|
17
|
-
s.rdoc_options = ["--line-numbers", "--title", "Rodf", "--main", "README.md"]
|
18
|
-
s.rubyforge_project = "rodf"
|
19
|
-
s.rubygems_version = "2.5.1"
|
20
|
-
s.summary = "ODF generation library for Ruby"
|
21
|
-
|
22
|
-
if s.respond_to? :specification_version then
|
23
|
-
s.specification_version = 4
|
24
|
-
|
25
|
-
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
26
|
-
s.add_runtime_dependency(%q<builder>, ["~> 3.0"])
|
27
|
-
s.add_runtime_dependency(%q<rubyzip>, ["~> 1.0"])
|
28
|
-
s.add_runtime_dependency(%q<activesupport>, ["< 6.0", ">= 3.0"])
|
29
|
-
s.add_development_dependency(%q<rspec>, ["~> 2.9"])
|
30
|
-
s.add_development_dependency(%q<rspec_hpricot_matchers>, ["~> 1.0"])
|
31
|
-
s.add_development_dependency(%q<echoe>, ["~> 4.6"])
|
32
|
-
else
|
33
|
-
s.add_dependency(%q<builder>, ["~> 3.0"])
|
34
|
-
s.add_dependency(%q<rubyzip>, ["~> 1.0"])
|
35
|
-
s.add_dependency(%q<activesupport>, ["< 6.0", ">= 3.0"])
|
36
|
-
s.add_dependency(%q<rspec>, ["~> 2.9"])
|
37
|
-
s.add_dependency(%q<rspec_hpricot_matchers>, ["~> 1.0"])
|
38
|
-
s.add_dependency(%q<echoe>, ["~> 4.6"])
|
39
|
-
end
|
40
|
-
else
|
41
|
-
s.add_dependency(%q<builder>, ["~> 3.0"])
|
42
|
-
s.add_dependency(%q<rubyzip>, ["~> 1.0"])
|
43
|
-
s.add_dependency(%q<activesupport>, ["< 6.0", ">= 3.0"])
|
44
|
-
s.add_dependency(%q<rspec>, ["~> 2.9"])
|
45
|
-
s.add_dependency(%q<rspec_hpricot_matchers>, ["~> 1.0"])
|
46
|
-
s.add_dependency(%q<echoe>, ["~> 4.6"])
|
47
|
-
end
|
48
|
-
end
|