fastxl 0.1.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 56a27248d60f5802e6a8ea597b3ee14c0b2003fa
4
+ data.tar.gz: bb4c374a5b90d4b263277eaf0404de99779ed74e
5
+ SHA512:
6
+ metadata.gz: 2d01384402ad7be7c7d0e2a4d356f80d95f1623a2a21a928becf04412678748d7be3e99bf13c6c942a0e3b684d0dcd39ad163f313f5b0a6eca4d9b75b175a30e
7
+ data.tar.gz: f0ed7b2598289a114c626038b598132743b4ac623e88d08357c206c17cf700458b4c970e5db7e6a84c672115bd1e0c04eb38af6cab57ca82be9bf36fdf6cdcaa
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ /rel/
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.1
5
+ before_install: gem install bundler -v 1.12.5
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at victor.campos@visagio.com. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in fastxl.gemspec
4
+ gemspec
5
+
6
+ gem 'pry'
7
+ gem 'rubyzip'
8
+ gem 'nokogiri'
data/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # Fastxl
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/fastxl`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'fastxl'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install fastxl
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/fastxl. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList['test/**/*_test.rb']
8
+ end
9
+
10
+ task :default => :test
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "fastxl"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
data/fastxl.gemspec ADDED
@@ -0,0 +1,42 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ require 'fastxl/version'
6
+ require 'fastxl/workbook'
7
+
8
+ require 'zip'
9
+ require 'nokogiri'
10
+ require 'pry'
11
+
12
+ Gem::Specification.new do |spec|
13
+ spec.name = "fastxl"
14
+ spec.version = Fastxl::VERSION
15
+ spec.authors = ["Victor Campos"]
16
+ spec.email = ["victor.campos@visagio.com"]
17
+
18
+ spec.summary = %q{Fast way to read and write in microsoft office xlsx}
19
+ spec.description = %q{Fast way to read and write in microsoft office xlsx}
20
+ spec.homepage = "https://github.com/fastxl."
21
+
22
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
23
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
24
+ if spec.respond_to?(:metadata)
25
+ spec.metadata['allowed_push_host'] = "https://rubygems.org"
26
+ else
27
+ raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
28
+ end
29
+
30
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
31
+ spec.bindir = "exe"
32
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
33
+ spec.require_paths = ["lib"]
34
+
35
+ spec.add_development_dependency "bundler", "~> 1.12"
36
+ spec.add_development_dependency "rake", "~> 10.0"
37
+ spec.add_development_dependency "minitest", "~> 5.0"
38
+ spec.add_development_dependency "pry"
39
+
40
+ spec.add_dependency "nokogiri"
41
+ spec.add_dependency "rubyzip", ">= 1.0.0"
42
+ end
data/lib/fastxl.rb ADDED
@@ -0,0 +1,11 @@
1
+ require "fastxl/version"
2
+
3
+ module Fastxl
4
+ def self.create
5
+ open(File.join(File.dirname(__FILE__), 'templates', 'one_sheet.xlsx'))
6
+ end
7
+
8
+ def self.open(file_path)
9
+ Fastxl::Workbook.new(Zip::File.open(file_path))
10
+ end
11
+ end
@@ -0,0 +1,3 @@
1
+ module Fastxl
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,97 @@
1
+ class Fastxl::Workbook
2
+ def initialize(xlsx)
3
+ @xlsx = xlsx
4
+ @modifications = {}
5
+ @virtual_dom = {}
6
+ end
7
+
8
+ def sheets
9
+ doc = xml_doc('xl/workbook.xml')
10
+ doc.xpath('//xmlns:sheet').map { |t| t.attributes['name'].value }
11
+ end
12
+
13
+ def prepend(sheet_name, sheet_content)
14
+ end
15
+
16
+ def append(sheet_name, sheet_content)
17
+ end
18
+
19
+ def delete(sheet_name)
20
+ end
21
+
22
+ def flush
23
+ buffer = Zip::OutputStream.write_buffer do |out|
24
+ document_paths = @virtual_dom.keys
25
+
26
+ @xlsx.entries.each do |e|
27
+ if e.name.in?(document_paths)
28
+ document_path = e.name
29
+ doc = xml_doc(document_path)
30
+ doc.xpath('//xmlns:sheetData').xpath('//xmlns:row').remove
31
+ doc.xpath('//xmlns:sheetData').first.add_child(rows(@virtual_dom[document_path]))
32
+
33
+ doc.xpath('//xmlns:worksheet').xpath('//xmlns:cols').remove
34
+ doc.xpath('//xmlns:worksheet').first.add_child('<cols><col collapsed="false" hidden="false" max="1025" min="1" style="0" width="11.3418367346939"/></cols>')
35
+
36
+ out.put_next_entry(document_path)
37
+
38
+ out.write doc.to_xml(:indent => 0).gsub("\n","")
39
+ else
40
+ out.put_next_entry(e.name)
41
+ out.write e.get_input_stream.read
42
+ end
43
+ end
44
+ end
45
+
46
+ buffer
47
+ end
48
+
49
+ def write(sheet_index, sheet_content)
50
+ @virtual_dom.merge!({
51
+ "xl/worksheets/sheet#{sheet_index}.xml" => sheet_content
52
+ })
53
+ end
54
+
55
+ private
56
+
57
+ def rows(sheet_content)
58
+ xml = ''
59
+
60
+ sheet_content.each_with_index do |r, idx|
61
+ xml << xml_row(r, idx + 1)
62
+ end
63
+
64
+ xml
65
+ end
66
+
67
+ def xml_row(row, row_id)
68
+ xml = "<row r=\"#{row_id}\" customFormat=\"false\" ht=\"14.25\" hidden=\"false\" customHeight=\"false\" outlineLevel=\"0\" collapsed=\"false\">"
69
+
70
+ row.each_with_index do |c, idx|
71
+ xml << xml_col(c, idx + 1, row_id)
72
+ end
73
+
74
+ xml << '</row>'
75
+ end
76
+
77
+ def xml_col(col, idx, row_id)
78
+ "<c r=\"#{excel_letter(idx)}#{row_id}\" s=\"1\" t=\"inlineStr\"><is><t>#{col}</t></is></c>"
79
+ end
80
+
81
+ def excel_letter(idx)
82
+ index_hash[idx]
83
+ end
84
+
85
+ def index_hash
86
+ @index_hash ||= Hash.new {|hash,key| hash[key] = hash[key - 1].next }.merge({1 => "A"})
87
+ end
88
+
89
+ def xml_doc(file_name)
90
+ workbook_content = find_file(file_name).get_input_stream.read
91
+ Nokogiri.XML(workbook_content)
92
+ end
93
+
94
+ def find_file(file_name)
95
+ @xlsx.entries.detect { |e| e.name == file_name }
96
+ end
97
+ end
Binary file
metadata ADDED
@@ -0,0 +1,141 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fastxl
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Victor Campos
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-10-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.12'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.12'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: nokogiri
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rubyzip
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: 1.0.0
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: 1.0.0
97
+ description: Fast way to read and write in microsoft office xlsx
98
+ email:
99
+ - victor.campos@visagio.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - ".gitignore"
105
+ - ".travis.yml"
106
+ - CODE_OF_CONDUCT.md
107
+ - Gemfile
108
+ - README.md
109
+ - Rakefile
110
+ - bin/console
111
+ - bin/setup
112
+ - fastxl.gemspec
113
+ - lib/fastxl.rb
114
+ - lib/fastxl/version.rb
115
+ - lib/fastxl/workbook.rb
116
+ - lib/templates/one_sheet.xlsx
117
+ homepage: https://github.com/fastxl.
118
+ licenses: []
119
+ metadata:
120
+ allowed_push_host: https://rubygems.org
121
+ post_install_message:
122
+ rdoc_options: []
123
+ require_paths:
124
+ - lib
125
+ required_ruby_version: !ruby/object:Gem::Requirement
126
+ requirements:
127
+ - - ">="
128
+ - !ruby/object:Gem::Version
129
+ version: '0'
130
+ required_rubygems_version: !ruby/object:Gem::Requirement
131
+ requirements:
132
+ - - ">="
133
+ - !ruby/object:Gem::Version
134
+ version: '0'
135
+ requirements: []
136
+ rubyforge_project:
137
+ rubygems_version: 2.5.1
138
+ signing_key:
139
+ specification_version: 4
140
+ summary: Fast way to read and write in microsoft office xlsx
141
+ test_files: []