xsv 0.3.15 → 0.3.16
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +8 -0
- data/lib/xsv/helpers.rb +2 -0
- data/lib/xsv/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3ab67d9fe191b18a010c3526e270f7a528189b8a8ad4496ff5cc8100497c8dfd
|
4
|
+
data.tar.gz: 3f7aec9bad6532dda901764d7c80342ab0763370bf0475d9159cc42730a8405e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 740bb30608da907db4ea9697587dd6da4c2cfc9032fa7196eb1dccfe1912ea77387a0545bb81980f0031f71b746cb6a7c1628aef4f1f35c2697fd68dac80379f
|
7
|
+
data.tar.gz: 288c520bf0b01a3ebb6463dba02bb63ed43eb9fa033ee5e19f1891411cc0c6554415f18455d07d94b45d4c8a56469a00e20d85794357eb48cf5106821458aee5
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -123,6 +123,14 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
123
123
|
|
124
124
|
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).
|
125
125
|
|
126
|
+
## Performance and Benchmarks
|
127
|
+
|
128
|
+
Xsv is faster and more memory efficient than other gems because of two things: it only _reads values_ from Excel files and it's based on a SAX-based parser instead of a DOM-based parser. If you want to read some background on this, check out my blog post on
|
129
|
+
[Efficient XML parsing in Ruby](https://storck.io/posts/efficient-xml-parsing-in-ruby/).
|
130
|
+
|
131
|
+
Jamie Schembri did a shootout of Xsv against various other Excel reading gems comparing parsing speed, memory usage and allocations.
|
132
|
+
Check our his blog post: [Faster Excel parsing in Ruby](https://blog.schembri.me/post/faster-excel-parsing-in-ruby/).
|
133
|
+
|
126
134
|
## Contributing
|
127
135
|
|
128
136
|
Bug reports and pull requests are welcome on GitHub at https://github.com/martijn/xsv.
|
data/lib/xsv/helpers.rb
CHANGED
data/lib/xsv/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xsv
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.16
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martijn Storck
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-06-
|
11
|
+
date: 2020-06-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubyzip
|