thiagoarrais-rodf 0.1 → 0.1.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/CHANGELOG +2 -1
- data/README.rdoc +6 -8
- data/rodf.gemspec +2 -2
- metadata +2 -2
data/CHANGELOG
CHANGED
data/README.rdoc
CHANGED
|
@@ -1,20 +1,18 @@
|
|
|
1
1
|
= rODF
|
|
2
2
|
|
|
3
|
-
This is
|
|
4
|
-
creating spreadsheets.
|
|
3
|
+
This is a library for writing to ODF output with Ruby. It currently only
|
|
4
|
+
supports creating spreadsheets (ODS). Text documents (ODT) and slide shows (ODP)
|
|
5
|
+
may be added some time in the future.
|
|
5
6
|
|
|
6
7
|
This is NOT an ODF reading library.
|
|
7
8
|
|
|
8
|
-
|
|
9
|
+
=== Installation
|
|
9
10
|
|
|
10
|
-
|
|
11
|
+
You should be able to install the latest stable version by saying something like
|
|
11
12
|
|
|
12
13
|
sudo gem install rodf
|
|
13
14
|
|
|
14
|
-
|
|
15
|
-
the source: http://github.com/thiagoarrais/rodf/tree
|
|
16
|
-
|
|
17
|
-
== How do I use it?
|
|
15
|
+
=== How do I use it?
|
|
18
16
|
|
|
19
17
|
rODF works pretty much like Builder, but with ODF-aware constructs. Try this:
|
|
20
18
|
|
data/rodf.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{rodf}
|
|
5
|
-
s.version = "0.1"
|
|
5
|
+
s.version = "0.1.1"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Thiago Arrais"]
|
|
9
|
-
s.date = %q{2008-
|
|
9
|
+
s.date = %q{2008-12-02}
|
|
10
10
|
s.description = %q{ODF generation library for Ruby}
|
|
11
11
|
s.email = %q{thiago.arrais@gmail.com}
|
|
12
12
|
s.extra_rdoc_files = ["lib/odf/row.rb", "lib/odf/spreadsheet.rb", "lib/odf/cell.rb", "lib/odf/column.rb", "lib/odf/table.rb", "lib/odf/property.rb", "lib/odf/style.rb", "lib/odf/skeleton/manifest.xml", "lib/odf/skeleton/styles.xml", "lib/odf/container.rb", "CHANGELOG", "README.rdoc", "LICENSE.LGPL"]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: thiagoarrais-rodf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thiago Arrais
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2008-
|
|
12
|
+
date: 2008-12-02 00:00:00 -08:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|