clbustos-rtf 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README +4 -2
  2. data/VERSION.yml +3 -2
  3. data/lib/rtf/node.rb +1 -1
  4. 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
- Resolve problems on Ruby 1.9.1 with ImageNode#read_source.
24
- Peter uses IO#getc, which returns a String on Ruby 1.9.1, not a Integer, so I replaced with getbyte.
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
@@ -1,4 +1,5 @@
1
1
  ---
2
- :minor: 2
3
- :patch: 1
4
2
  :major: 0
3
+ :minor: 2
4
+ :patch: 2
5
+ :build:
@@ -750,7 +750,7 @@ module RTF
750
750
  attr_reader :width, :shading_colour, :style
751
751
 
752
752
  # Attribute mutator.
753
- attr_writer :width, :style
753
+ attr_writer :width
754
754
 
755
755
  # This is the constructor for the TableCellNode class.
756
756
  #
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
- prerelease: false
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-23 00:00:00 -03:00
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.6
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.