oxcelix 0.3.3 → 0.4.0

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.
@@ -1,26 +1,26 @@
1
- # -*- encoding: utf-8 -*-
2
-
3
- require 'rake'
4
- Gem::Specification.new do |s|
5
- s.name = 'oxcelix'
6
- s.version = '0.3.3'
7
- s.date = '2014-09-19'
8
- s.summary = 'A fast Excel 2007/2010 file parser'
9
- s.description = 'A fast Excel 2007/2010 (.xlsx) file parser that returns a collection of Matrix objects'
10
- s.authors = 'Giovanni Biczo'
11
- s.homepage = 'http://github.com/gbiczo/oxcelix'
12
- s.rubyforge_project = 'oxcelix'
13
-
14
- s.files = FileList["LICENSE", "README.rdoc", "README.md",
15
- "lib/oxcelix.rb", "lib/oxcelix/cellhelper.rb",
16
- "lib/oxcelix/cell.rb", "lib/oxcelix/numformats.rb",
17
- "lib/oxcelix/nf.rb",
18
- "lib/oxcelix/sheet.rb", "lib/oxcelix/workbook.rb",
19
- "lib/oxcelix/sax/*",
20
- "oxcelix.gemspec", "spec/*", ".yardopts", "CHANGES"].to_a
21
- s.license = 'MIT'
22
-
23
- s.add_runtime_dependency "ox", [">= 2.0.6"]
24
- s.add_runtime_dependency "rubyzip", [">= 1.1.0"]
25
- s.rdoc_options << '--all'
26
- end
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ require 'rake'
4
+ Gem::Specification.new do |s|
5
+ s.name = 'oxcelix'
6
+ s.version = '0.4.0'
7
+ s.date = '2014-10-05'
8
+ s.summary = 'A fast Excel 2007/2010 file parser'
9
+ s.description = 'A fast Excel 2007/2010 (.xlsx) file parser that returns a collection of Matrix objects'
10
+ s.authors = 'Giovanni Biczo'
11
+ s.homepage = 'http://github.com/gbiczo/oxcelix'
12
+ s.rubyforge_project = 'oxcelix'
13
+
14
+ s.files = FileList["LICENSE", "README.rdoc", "README.md",
15
+ "lib/oxcelix.rb", "lib/oxcelix/cellhelper.rb",
16
+ "lib/oxcelix/cell.rb", "lib/oxcelix/numformats.rb",
17
+ "lib/oxcelix/nf.rb",
18
+ "lib/oxcelix/sheet.rb", "lib/oxcelix/workbook.rb",
19
+ "lib/oxcelix/sax/*",
20
+ "oxcelix.gemspec", "spec/*", ".yardopts", "CHANGES"].to_a
21
+ s.license = 'MIT'
22
+
23
+ s.add_runtime_dependency "ox", [">= 2.0.6"]
24
+ s.add_runtime_dependency "rubyzip", [">= 1.1.0"]
25
+ s.rdoc_options << '--all'
26
+ end
@@ -1,13 +1,14 @@
1
- #require './spec_helper'
2
- require_relative '../lib/oxcelix.rb'
3
- describe "Cell object" do
4
- describe '#r' do
5
- it "sets the value of xlcoords" do
6
- c=Oxcelix::Cell.new
7
- c.r('H276')
8
- c.xlcoords.should=='H276'
9
- c.x.should==7
10
- c.y.should==275
11
- end
12
- end
13
- end
1
+ #require "rspec"
2
+ require_relative '../lib/oxcelix.rb'
3
+
4
+ describe "Cell" do
5
+ describe '#r' do
6
+ it "sets the value of xlcoords" do
7
+ c=Oxcelix::Cell.new
8
+ c.r('H276')
9
+ c.xlcoords.should=='H276'
10
+ c.x.should==7
11
+ c.y.should==275
12
+ end
13
+ end
14
+ end
@@ -1,11 +1,12 @@
1
- #require './spec_helper'
2
- require '../lib/oxcelix.rb'
3
- describe "Fixnum object" do
4
- describe '#col_name' do
5
- it "returns a string representing an excel column name" do
6
- (0..25).each do |x|
7
- x.col_name.should == ('A'..'Z').to_a[x]
8
- end
9
- end
10
- end
11
- end
1
+ #require_relative './spec_helper.rb'
2
+ require_relative '../lib/oxcelix.rb'
3
+
4
+ describe "Fixnum object" do
5
+ describe '#col_name' do
6
+ it "returns a string representing an excel column name" do
7
+ (0..25).each do |x|
8
+ x.col_name.should == ('A'..'Z').to_a[x]
9
+ end
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,10 @@
1
+
2
+ testdir = File.dirname(__FILE__)
3
+
4
+ $LOAD_PATH.unshift testdir unless $LOAD_PATH.include?(testdir)
5
+
6
+ libdir = File.dirname(File.dirname(__FILE__)) + '/lib'
7
+
8
+ $LOAD_PATH.unshift libdir unless $LOAD_PATH.include?(libdir)
9
+
10
+ require 'oxcelix'
@@ -1,11 +1,12 @@
1
- #require './spec_helper'
2
- require '../lib/oxcelix.rb'
3
- describe "Matrix object" do
4
- describe '#[]=' do
5
- it "should set a cell to a new value" do
6
- m_obj=Matrix.build(4, 4){nil}
7
- m_obj[3,3]='foo'
8
- m_obj[3,3].should == 'foo'
9
- end
10
- end
11
- end
1
+ #require './spec_helper.rb'
2
+ require_relative '../lib/oxcelix.rb'
3
+
4
+ describe "Matrix object" do
5
+ describe '#[]=' do
6
+ it "should set a cell to a new value" do
7
+ m_obj=Matrix.build(4, 4){nil}
8
+ m_obj[3,3]='foo'
9
+ m_obj[3,3].should == 'foo'
10
+ end
11
+ end
12
+ end
@@ -1,36 +1,37 @@
1
- #require './spec_helper'
2
- require '../lib/oxcelix.rb'
3
- describe "Oxcelix module" do
4
- # before :all do
5
- describe 'Workbook' do
6
- context 'normal' do
7
- it "should open the excel file and return a Workbook object" do
8
- file = './test.xlsx'
9
- w=Oxcelix::Workbook.new(file)
10
- w.sheets.size.should == 2
11
- w.sheets[0].name.should=="Testsheet1"
12
- w.sheets[1].name.should=="Testsheet2"
13
- end
14
- end
15
- context 'with excluded sheets' do
16
- it "should open the sheets not excluded of the excel file" do
17
- file = './test.xlsx'
18
- w=Oxcelix::Workbook.new(file, {:exclude=>['Testsheet2']})
19
- w.sheets.size.should==1
20
- w.sheets[0].name.should=="Testsheet1"
21
- end
22
- end
23
- context 'with included sheets' do
24
- it "should open only the included sheets of the excel file" do
25
- file = './test.xlsx'
26
- w=Oxcelix::Workbook.new(file, {:include=>['Testsheet2']})
27
- w.sheets.size.should==1
28
- w.sheets[0].name.should=="Testsheet2"
29
- end
30
- end
31
- context 'with merged cells copied group-wide'
32
- it "should open the excel file and copy the merged cells trough the mergegroup" do
33
- end
34
- end
35
- # end
36
- end
1
+ #require './spec_helper.rb'
2
+ require_relative '../lib/oxcelix.rb'
3
+
4
+ describe "Oxcelix module" do
5
+ # before :all do
6
+ describe 'Workbook' do
7
+ context 'normal' do
8
+ it "should open the excel file and return a Workbook object" do
9
+ file = 'spec/test.xlsx'
10
+ w=Oxcelix::Workbook.new(file)
11
+ w.sheets.size.should == 2
12
+ w.sheets[0].name.should=="Testsheet1"
13
+ w.sheets[1].name.should=="Testsheet2"
14
+ end
15
+ end
16
+ context 'with excluded sheets' do
17
+ it "should open the sheets not excluded of the excel file" do
18
+ file = 'spec/test.xlsx'
19
+ w=Oxcelix::Workbook.new(file, {:exclude=>['Testsheet2']})
20
+ w.sheets.size.should==1
21
+ w.sheets[0].name.should=="Testsheet1"
22
+ end
23
+ end
24
+ context 'with included sheets' do
25
+ it "should open only the included sheets of the excel file" do
26
+ file = 'spec/test.xlsx'
27
+ w=Oxcelix::Workbook.new(file, {:include=>['Testsheet2']})
28
+ w.sheets.size.should==1
29
+ w.sheets[0].name.should=="Testsheet2"
30
+ end
31
+ end
32
+ context 'with merged cells copied group-wide'
33
+ it "should open the excel file and copy the merged cells trough the mergegroup" do
34
+ end
35
+ end
36
+ # end
37
+ end
@@ -1,3 +1,3 @@
1
- require_relative '../lib/oxcelix'
2
-
3
- require 'yaml'
1
+ require_relative '../lib/oxcelix'
2
+
3
+ require 'yaml'
@@ -1,19 +1,19 @@
1
- #require './spec_helper'
2
- require '../lib/oxcelix.rb'
3
- describe "String object" do
4
- describe 'numeric?' do
5
- context "with numbers" do
6
- it "should return true" do
7
- (1..100).each do |x|
8
- x.to_s.numeric?.should == true
9
- end
10
- end
11
- context "with strings"
12
- it "should return false" do
13
- ('a'..'zz').each do |x|
14
- x.numeric?.should == false
15
- end
16
- end
17
- end
18
- end
19
- end
1
+ #require './spec_helper.rb'
2
+ require_relative '../lib/oxcelix.rb'
3
+ describe "String object" do
4
+ describe 'numeric?' do
5
+ context "with numbers" do
6
+ it "should return true" do
7
+ (1..100).each do |x|
8
+ x.to_s.numeric?.should == true
9
+ end
10
+ end
11
+ context "with strings"
12
+ it "should return false" do
13
+ ('a'..'zz').each do |x|
14
+ x.numeric?.should == false
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
metadata CHANGED
@@ -1,46 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oxcelix
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
5
- prerelease:
4
+ version: 0.4.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Giovanni Biczo
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2014-09-19 00:00:00.000000000 Z
11
+ date: 2014-10-05 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: ox
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: 2.0.6
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: 2.0.6
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: rubyzip
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - ">="
36
32
  - !ruby/object:Gem::Version
37
33
  version: 1.1.0
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - ">="
44
39
  - !ruby/object:Gem::Version
45
40
  version: 1.1.0
46
41
  description: A fast Excel 2007/2010 (.xlsx) file parser that returns a collection
@@ -50,54 +45,55 @@ executables: []
50
45
  extensions: []
51
46
  extra_rdoc_files: []
52
47
  files:
48
+ - ".yardopts"
49
+ - CHANGES
53
50
  - LICENSE
54
- - README.rdoc
55
51
  - README.md
52
+ - README.rdoc
56
53
  - lib/oxcelix.rb
57
- - lib/oxcelix/cellhelper.rb
58
54
  - lib/oxcelix/cell.rb
59
- - lib/oxcelix/numformats.rb
55
+ - lib/oxcelix/cellhelper.rb
60
56
  - lib/oxcelix/nf.rb
61
- - lib/oxcelix/sheet.rb
62
- - lib/oxcelix/workbook.rb
57
+ - lib/oxcelix/numformats.rb
63
58
  - lib/oxcelix/sax/comments.rb
64
59
  - lib/oxcelix/sax/sharedstrings.rb
65
60
  - lib/oxcelix/sax/styles.rb
66
61
  - lib/oxcelix/sax/xlsheet.rb
62
+ - lib/oxcelix/sheet.rb
63
+ - lib/oxcelix/workbook.rb
67
64
  - oxcelix.gemspec
68
65
  - spec/cell_spec.rb
69
66
  - spec/fixnum_spec.rb
67
+ - spec/helper.rb
70
68
  - spec/matrix_spec.rb
71
69
  - spec/oxcelix_spec.rb
72
70
  - spec/spec_helper.rb
73
71
  - spec/string_spec.rb
74
72
  - spec/test.xlsx
75
- - .yardopts
76
- - CHANGES
77
73
  homepage: http://github.com/gbiczo/oxcelix
78
74
  licenses:
79
75
  - MIT
76
+ metadata: {}
80
77
  post_install_message:
81
78
  rdoc_options:
82
- - --all
79
+ - "--all"
83
80
  require_paths:
84
81
  - lib
85
82
  required_ruby_version: !ruby/object:Gem::Requirement
86
- none: false
87
83
  requirements:
88
- - - ! '>='
84
+ - - ">="
89
85
  - !ruby/object:Gem::Version
90
86
  version: '0'
91
87
  required_rubygems_version: !ruby/object:Gem::Requirement
92
- none: false
93
88
  requirements:
94
- - - ! '>='
89
+ - - ">="
95
90
  - !ruby/object:Gem::Version
96
91
  version: '0'
97
92
  requirements: []
98
93
  rubyforge_project: oxcelix
99
- rubygems_version: 1.8.28
94
+ rubygems_version: 2.2.1
100
95
  signing_key:
101
- specification_version: 3
96
+ specification_version: 4
102
97
  summary: A fast Excel 2007/2010 file parser
103
98
  test_files: []
99
+ has_rdoc: