ricardoo27-writeexcel 0.6.12.1 → 0.6.12.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/lib/writeexcel/worksheet.rb +1 -3
- data/writeexcel.gemspec +1 -1
- metadata +1 -1
data/lib/writeexcel/worksheet.rb
CHANGED
@@ -970,9 +970,7 @@ def merge_range(*args)
|
|
970
970
|
format.set_merge_range
|
971
971
|
|
972
972
|
# Excel doesn't allow a single cell to be merged
|
973
|
-
raise "Can't merge single cell" if rwFirst == rwLast and
|
974
|
-
colFirst == colLast
|
975
|
-
|
973
|
+
#raise "Can't merge single cell" if rwFirst == rwLast and colFirst == colLast
|
976
974
|
# Swap last row/col with first row/col as necessary
|
977
975
|
rwFirst, rwLast = rwLast, rwFirst if rwFirst > rwLast
|
978
976
|
colFirst, colLast = colLast, colFirst if colFirst > colLast
|
data/writeexcel.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "ricardoo27-writeexcel"
|
8
|
-
s.version = "0.6.12.
|
8
|
+
s.version = "0.6.12.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Hideo NAKAMURA","ricardoo27"]
|