rubyXL 1.2.2 → 1.2.3
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/VERSION +1 -1
- data/lib/rubyXL/parser.rb +1 -2
- data/rubyXL.gemspec +2 -2
- metadata +4 -4
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.3
|
data/lib/rubyXL/parser.rb
CHANGED
|
@@ -20,7 +20,6 @@ module RubyXL
|
|
|
20
20
|
col = 0
|
|
21
21
|
i = 0
|
|
22
22
|
if @@parsed_column_hash[one].nil?
|
|
23
|
-
puts "||#{one}||"
|
|
24
23
|
two = one.reverse #because of 26^i calculation
|
|
25
24
|
two.each_byte do |c|
|
|
26
25
|
int_val = c - 64 #converts A to 1
|
|
@@ -227,7 +226,7 @@ module RubyXL
|
|
|
227
226
|
|
|
228
227
|
wb.worksheets[i].row_styles[row_attributes['r'].content] = { :style => row_style }
|
|
229
228
|
|
|
230
|
-
|
|
229
|
+
if !row_attributes['ht'].nil? && !row_attributes['ht'].content.blank?
|
|
231
230
|
wb.worksheets[i].change_row_height(Integer(row_attributes['r'].content)-1,
|
|
232
231
|
Float(row_attributes['ht'].content))
|
|
233
232
|
end
|
data/rubyXL.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{rubyXL}
|
|
8
|
-
s.version = "1.2.
|
|
8
|
+
s.version = "1.2.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Vivek Bhagwat"]
|
|
12
|
-
s.date = %q{2012-01-
|
|
12
|
+
s.date = %q{2012-01-15}
|
|
13
13
|
s.description = %q{rubyXL is a gem which allows the parsing, creation, and manipulation of Microsoft Excel (.xlsx/.xlsm) Documents}
|
|
14
14
|
s.email = %q{bhagwat.vivek@gmail.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubyXL
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
9
|
+
- 3
|
|
10
10
|
segments_generated: true
|
|
11
|
-
version: 1.2.
|
|
11
|
+
version: 1.2.3
|
|
12
12
|
platform: ruby
|
|
13
13
|
authors:
|
|
14
14
|
- Vivek Bhagwat
|
|
@@ -16,7 +16,7 @@ autorequire:
|
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
18
|
|
|
19
|
-
date: 2012-01-
|
|
19
|
+
date: 2012-01-15 00:00:00 -05:00
|
|
20
20
|
default_executable:
|
|
21
21
|
dependencies:
|
|
22
22
|
- !ruby/object:Gem::Dependency
|