writeexcel 0.6.12 → 0.6.13

Sign up to get free protection for your applications and to get access to all the features.
@@ -76,6 +76,12 @@ You must save source file in UTF8 and run ruby with -Ku option or set $KCODE='u'
76
76
  when use urf8 string data.
77
77
 
78
78
  == Recent Changes
79
+ v0.6.13
80
+ * Bug fix issue 19. Workbook#store_num_format, format written in utf8 raise exception.
81
+
82
+ v0.6.12
83
+ * Bug fix issue 17. Worksheet#store_formula shouldn't be private
84
+
79
85
  v0.6.11
80
86
  * Bug fix issue 15. Worksheet#write_comment on the same row overwrite other comments.
81
87
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.12
1
+ 0.6.13
@@ -10,7 +10,12 @@
10
10
  <div>
11
11
  <a name='___top' class='dummyTopAnchor' ></a>
12
12
  </div>
13
- <h1>writeexcel Rubygem Reference</h1>
13
+ <!-- FC2カウンター ここから -->
14
+ <script language="javascript" type="text/javascript" src="http://counter1.fc2.com/counter.php?id=10151447&main=1"></script><noscript><img src="http://counter1.fc2.com/counter_img.php?id=10151447&main=1" /></noscript>
15
+ <!-- FC2カウンター ここまで -->
16
+ <!-- FC2カウンター ここから -->
17
+ 現在の閲覧者数:<script language="javascript" type="text/javascript" src="http://counter1.fc2.com/views.php?id=10151447&main=1"></script><noscript><img src="http://counter1.fc2.com/counter_now.php?id=10151447&main=1" /></noscript>
18
+ <!-- FC2カウンター ここまで --><h1>writeexcel Rubygem Reference</h1>
14
19
  <p>
15
20
  The <a href="http://github.com/cxn03651/writeexcel">writeexcel</a> rubygem can be used to create a cross-platform Excel binary file.
16
21
  Multiple worksheets can be added to a workbook and formatting can be applied to cells.
@@ -1697,6 +1697,7 @@ def store_num_format(format, ifmt, encoding) #:nodoc:
1697
1697
  if is_utf8?(format)
1698
1698
  format = utf8_to_16be(format)
1699
1699
  encoding = 1
1700
+ cch = format.bytesize
1700
1701
  end
1701
1702
 
1702
1703
  # Handle Unicode format strings.
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "writeexcel"
8
- s.version = "0.6.12"
8
+ s.version = "0.6.13"
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"]
12
- s.date = "2011-12-21"
12
+ s.date = "2012-04-19"
13
13
  s.description = "Multiple worksheets can be added to a workbook and formatting can be applied to cells. Text, numbers, formulas, hyperlinks and images can be written to the cells."
14
14
  s.email = "cxn03651@msj.biglobe.ne.jp"
15
15
  s.extra_rdoc_files = [
metadata CHANGED
@@ -1,25 +1,32 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: writeexcel
3
- version: !ruby/object:Gem::Version
4
- version: 0.6.12
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
5
  prerelease:
6
+ segments:
7
+ - 0
8
+ - 6
9
+ - 13
10
+ version: 0.6.13
6
11
  platform: ruby
7
- authors:
12
+ authors:
8
13
  - Hideo NAKAMURA
9
14
  autorequire:
10
15
  bindir: bin
11
16
  cert_chain: []
12
- date: 2011-12-21 00:00:00.000000000Z
17
+
18
+ date: 2012-04-19 00:00:00 Z
13
19
  dependencies: []
14
- description: Multiple worksheets can be added to a workbook and formatting can be
15
- applied to cells. Text, numbers, formulas, hyperlinks and images can be written
16
- to the cells.
20
+
21
+ description: Multiple worksheets can be added to a workbook and formatting can be applied to cells. Text, numbers, formulas, hyperlinks and images can be written to the cells.
17
22
  email: cxn03651@msj.biglobe.ne.jp
18
23
  executables: []
24
+
19
25
  extensions: []
20
- extra_rdoc_files:
26
+
27
+ extra_rdoc_files:
21
28
  - README.rdoc
22
- files:
29
+ files:
23
30
  - .document
24
31
  - .gitattributes
25
32
  - README.rdoc
@@ -266,26 +273,36 @@ files:
266
273
  - writeexcel.rdoc
267
274
  homepage: http://wiki.github.com/cxn03651/writeexcel/
268
275
  licenses: []
276
+
269
277
  post_install_message:
270
278
  rdoc_options: []
271
- require_paths:
279
+
280
+ require_paths:
272
281
  - lib
273
- required_ruby_version: !ruby/object:Gem::Requirement
282
+ required_ruby_version: !ruby/object:Gem::Requirement
274
283
  none: false
275
- requirements:
276
- - - ! '>='
277
- - !ruby/object:Gem::Version
278
- version: '0'
279
- required_rubygems_version: !ruby/object:Gem::Requirement
284
+ requirements:
285
+ - - ">="
286
+ - !ruby/object:Gem::Version
287
+ hash: 3
288
+ segments:
289
+ - 0
290
+ version: "0"
291
+ required_rubygems_version: !ruby/object:Gem::Requirement
280
292
  none: false
281
- requirements:
282
- - - ! '>='
283
- - !ruby/object:Gem::Version
284
- version: '0'
293
+ requirements:
294
+ - - ">="
295
+ - !ruby/object:Gem::Version
296
+ hash: 3
297
+ segments:
298
+ - 0
299
+ version: "0"
285
300
  requirements: []
301
+
286
302
  rubyforge_project:
287
303
  rubygems_version: 1.8.10
288
304
  signing_key:
289
305
  specification_version: 3
290
306
  summary: Write to a cross-platform Excel binary file.
291
307
  test_files: []
308
+