xsv 1.0.3 → 1.0.4
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 +4 -4
- data/.github/workflows/ruby.yml +32 -0
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/lib/xsv/sheet_rows_handler.rb +2 -0
- data/lib/xsv/version.rb +1 -1
- metadata +3 -3
- data/.travis.yml +0 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3f3abfccfccc78bc42a10cd71a1c1579b4498acee6b3f6e96b19da0aa13f27c6
|
|
4
|
+
data.tar.gz: fc317c12354721f08d6ad757f147c9ba6fcf2b8cc73cc0500ae5d17e1f5675a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 92e917efe5443041dc3ac24e38518541dfedc834eaa17b866800b85a356a2072f6bf0f52c4bc977b9c4ba115a2a4f5401d782408d4528bbe44781f0c92a44161
|
|
7
|
+
data.tar.gz: edca02d81bafea0cdf80665448d69d39325de475144dcfac10f4e4cde77a413cd3a4aed0b269b0eae88bde9b0c4723c4e1ce3608969f36af41630a4a480bc5a8
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# This workflow uses actions that are not certified by GitHub.
|
|
2
|
+
# They are provided by a third-party and are governed by
|
|
3
|
+
# separate terms of service, privacy policy, and support
|
|
4
|
+
# documentation.
|
|
5
|
+
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
|
|
6
|
+
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
|
7
|
+
|
|
8
|
+
name: Ruby
|
|
9
|
+
|
|
10
|
+
on:
|
|
11
|
+
push:
|
|
12
|
+
branches: [ master ]
|
|
13
|
+
pull_request:
|
|
14
|
+
branches: [ master ]
|
|
15
|
+
|
|
16
|
+
jobs:
|
|
17
|
+
test:
|
|
18
|
+
|
|
19
|
+
runs-on: ubuntu-latest
|
|
20
|
+
strategy:
|
|
21
|
+
matrix:
|
|
22
|
+
ruby-version: ['2.6', '2.7', '3.0', 'jruby', 'truffleruby']
|
|
23
|
+
|
|
24
|
+
steps:
|
|
25
|
+
- uses: actions/checkout@v2
|
|
26
|
+
- name: Set up Ruby
|
|
27
|
+
uses: ruby/setup-ruby@v1
|
|
28
|
+
with:
|
|
29
|
+
ruby-version: ${{ matrix.ruby-version }}
|
|
30
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
|
31
|
+
- name: Run tests
|
|
32
|
+
run: bundle exec rake
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://rubydoc.info/github/martijn/xsv)
|
|
5
5
|
[](https://badge.fury.io/rb/xsv)
|
|
6
6
|
|
|
7
|
-
Xsv is a fast, lightweight, pure Ruby parser for Office Open XML spreadsheet files
|
|
7
|
+
Xsv is a fast, lightweight, pure Ruby parser for ISO/IEC 29500 Office Open XML spreadsheet files
|
|
8
8
|
(commonly known as Excel or .xlsx files). It strives to be minimal in the
|
|
9
9
|
sense that it provides nothing a CSV reader wouldn't, meaning it only
|
|
10
10
|
deals with minimal formatting and cannot create or modify documents.
|
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: 1.0.
|
|
4
|
+
version: 1.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Martijn Storck
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-05
|
|
11
|
+
date: 2021-07-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubyzip
|
|
@@ -83,8 +83,8 @@ executables: []
|
|
|
83
83
|
extensions: []
|
|
84
84
|
extra_rdoc_files: []
|
|
85
85
|
files:
|
|
86
|
+
- ".github/workflows/ruby.yml"
|
|
86
87
|
- ".gitignore"
|
|
87
|
-
- ".travis.yml"
|
|
88
88
|
- CHANGELOG.md
|
|
89
89
|
- Gemfile
|
|
90
90
|
- LICENSE.txt
|