clbustos-rtf 0.2.1 → 0.2.2
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/README +4 -2
- data/VERSION.yml +3 -2
- data/lib/rtf/node.rb +1 -1
- metadata +5 -12
data/README
CHANGED
@@ -20,8 +20,10 @@ invalid RTF documents with this library.
|
|
20
20
|
|
21
21
|
=== This version
|
22
22
|
|
23
|
-
|
24
|
-
|
23
|
+
A bug fix fork of thechrisoshow/rtf[http://github.com/thechrisoshow/rtf] , which is a gitified version of original ruby-rft[http://rubyforge.org/projects/ruby-rtf/]
|
24
|
+
|
25
|
+
* Resolve problems on Ruby 1.9.1 with ImageNode#read_source. Peter uses IO#getc, which returns a String on Ruby 1.9.1, not a Integer, so I replaced with getbyte.
|
26
|
+
* Deleted duplicated definition of ImageNode#style= with attr_writer and def.
|
25
27
|
|
26
28
|
=== Known Issues
|
27
29
|
I've tried to assemble a reasonably extensive (although I won't claim
|
data/VERSION.yml
CHANGED
data/lib/rtf/node.rb
CHANGED
metadata
CHANGED
@@ -1,12 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clbustos-rtf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
segments:
|
6
|
-
- 0
|
7
|
-
- 2
|
8
|
-
- 1
|
9
|
-
version: 0.2.1
|
4
|
+
version: 0.2.2
|
10
5
|
platform: ruby
|
11
6
|
authors:
|
12
7
|
- Peter Wood
|
@@ -15,7 +10,7 @@ autorequire:
|
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
12
|
|
18
|
-
date: 2010-03-
|
13
|
+
date: 2010-03-25 00:00:00 -03:00
|
19
14
|
default_executable:
|
20
15
|
dependencies: []
|
21
16
|
|
@@ -90,20 +85,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
90
85
|
requirements:
|
91
86
|
- - ">="
|
92
87
|
- !ruby/object:Gem::Version
|
93
|
-
segments:
|
94
|
-
- 0
|
95
88
|
version: "0"
|
89
|
+
version:
|
96
90
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
97
91
|
requirements:
|
98
92
|
- - ">="
|
99
93
|
- !ruby/object:Gem::Version
|
100
|
-
segments:
|
101
|
-
- 0
|
102
94
|
version: "0"
|
95
|
+
version:
|
103
96
|
requirements: []
|
104
97
|
|
105
98
|
rubyforge_project: ruby-statsample
|
106
|
-
rubygems_version: 1.3.
|
99
|
+
rubygems_version: 1.3.5
|
107
100
|
signing_key:
|
108
101
|
specification_version: 3
|
109
102
|
summary: Ruby library to create rich text format documents.
|