parquet 0.2.12-arm64-darwin → 0.3.0-arm64-darwin
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/Gemfile +5 -3
- data/README.md +1 -1
- data/Rakefile +16 -0
- data/lib/parquet/3.2/parquet.bundle +0 -0
- data/lib/parquet/3.3/parquet.bundle +0 -0
- data/lib/parquet/3.4/parquet.bundle +0 -0
- data/lib/parquet/version.rb +1 -1
- data/lib/parquet.rb +6 -1
- metadata +14 -45
- data/Cargo.lock +0 -1449
- data/Cargo.toml +0 -3
- data/ext/parquet/Cargo.toml +0 -28
- data/ext/parquet/extconf.rb +0 -4
- data/ext/parquet/src/allocator.rs +0 -13
- data/ext/parquet/src/enumerator.rs +0 -52
- data/ext/parquet/src/header_cache.rs +0 -100
- data/ext/parquet/src/lib.rs +0 -29
- data/ext/parquet/src/reader/mod.rs +0 -44
- data/ext/parquet/src/reader/parquet_column_reader.rs +0 -214
- data/ext/parquet/src/reader/parquet_row_reader.rs +0 -157
- data/ext/parquet/src/ruby_integration.rs +0 -77
- data/ext/parquet/src/ruby_reader.rs +0 -171
- data/ext/parquet/src/types/core_types.rs +0 -75
- data/ext/parquet/src/types/mod.rs +0 -30
- data/ext/parquet/src/types/parquet_value.rs +0 -462
- data/ext/parquet/src/types/record_types.rs +0 -204
- data/ext/parquet/src/types/timestamp.rs +0 -85
- data/ext/parquet/src/types/type_conversion.rs +0 -809
- data/ext/parquet/src/types/writer_types.rs +0 -283
- data/ext/parquet/src/utils.rs +0 -148
- data/ext/parquet/src/writer/mod.rs +0 -575
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be8f00234af84d607670f22c46bc1e7dca0df566a88ccc1429623db2bb5d1269
|
4
|
+
data.tar.gz: 90a4a5e60e1f3f6a047e1c9049d5dc77cbfa567cd3ec430d513565bf223c35f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 011f2ab8e6180c9e8f6624633f80a6476f794d8ccdb203ff44c66f7ccc5bfb3d3bc60c56647c0164abdea905b79123a8a4a98b23ca63e90effe55a97179d719e
|
7
|
+
data.tar.gz: f660d6ccb255f55277026109857ba633a555184bd8a549fdaaeb7160e5e9c62a6e8ad99d8ec77002ea525a0798ec67d77dfd89d5667a221e4c5ca60bf2d4f6ce
|
data/Gemfile
CHANGED
@@ -2,16 +2,18 @@ source "https://rubygems.org"
|
|
2
2
|
|
3
3
|
gem "rb_sys", "~> 0.9.56"
|
4
4
|
gem "rake"
|
5
|
+
gem "bigdecimal"
|
5
6
|
|
6
7
|
# Use local version of parquet
|
7
8
|
gemspec
|
8
9
|
|
9
10
|
group :development do
|
10
|
-
gem "benchmark-ips", "~> 2.12"
|
11
|
-
gem "polars-df"
|
12
|
-
gem "duckdb"
|
11
|
+
# gem "benchmark-ips", "~> 2.12"
|
12
|
+
# gem "polars-df"
|
13
|
+
# gem "duckdb"
|
13
14
|
end
|
14
15
|
|
15
16
|
group :test do
|
17
|
+
gem "csv"
|
16
18
|
gem "minitest", "~> 5.0"
|
17
19
|
end
|
data/README.md
CHANGED
data/Rakefile
CHANGED
@@ -7,9 +7,25 @@ task default: :test
|
|
7
7
|
|
8
8
|
GEMSPEC = Gem::Specification.load("parquet.gemspec")
|
9
9
|
|
10
|
+
|
11
|
+
platforms = [
|
12
|
+
"x86_64-linux",
|
13
|
+
"x86_64-linux-musl",
|
14
|
+
"aarch64-linux",
|
15
|
+
"aarch64-linux-musl",
|
16
|
+
"x86_64-darwin",
|
17
|
+
"arm64-darwin"
|
18
|
+
]
|
19
|
+
|
10
20
|
RbSys::ExtensionTask.new("parquet", GEMSPEC) do |ext|
|
11
21
|
ext.lib_dir = "lib/parquet"
|
12
22
|
ext.ext_dir = "ext/parquet"
|
23
|
+
ext.cross_compile = true
|
24
|
+
ext.cross_platform = platforms
|
25
|
+
ext.cross_compiling do |spec|
|
26
|
+
spec.dependencies.reject! { |dep| dep.name == "rb_sys" }
|
27
|
+
spec.files.reject! { |file| File.fnmatch?("ext/*", file, File::FNM_EXTGLOB) }
|
28
|
+
end
|
13
29
|
end
|
14
30
|
|
15
31
|
Rake::TestTask.new do |t|
|
Binary file
|
Binary file
|
Binary file
|
data/lib/parquet/version.rb
CHANGED
data/lib/parquet.rb
CHANGED
metadata
CHANGED
@@ -1,29 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: parquet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: arm64-darwin
|
6
6
|
authors:
|
7
7
|
- Nathan Jaremko
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-02-
|
11
|
+
date: 2025-02-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: rb_sys
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 0.9.39
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - "~>"
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: 0.9.39
|
27
13
|
- !ruby/object:Gem::Dependency
|
28
14
|
name: rake-compiler
|
29
15
|
requirement: !ruby/object:Gem::Requirement
|
@@ -44,38 +30,18 @@ description: |2
|
|
44
30
|
email:
|
45
31
|
- nathan@jaremko.ca
|
46
32
|
executables: []
|
47
|
-
extensions:
|
48
|
-
- ext/parquet/extconf.rb
|
33
|
+
extensions: []
|
49
34
|
extra_rdoc_files: []
|
50
35
|
files:
|
51
|
-
- Cargo.lock
|
52
|
-
- Cargo.toml
|
53
36
|
- Gemfile
|
54
37
|
- LICENSE
|
55
38
|
- README.md
|
56
39
|
- Rakefile
|
57
|
-
- ext/parquet/Cargo.toml
|
58
|
-
- ext/parquet/extconf.rb
|
59
|
-
- ext/parquet/src/allocator.rs
|
60
|
-
- ext/parquet/src/enumerator.rs
|
61
|
-
- ext/parquet/src/header_cache.rs
|
62
|
-
- ext/parquet/src/lib.rs
|
63
|
-
- ext/parquet/src/reader/mod.rs
|
64
|
-
- ext/parquet/src/reader/parquet_column_reader.rs
|
65
|
-
- ext/parquet/src/reader/parquet_row_reader.rs
|
66
|
-
- ext/parquet/src/ruby_integration.rs
|
67
|
-
- ext/parquet/src/ruby_reader.rs
|
68
|
-
- ext/parquet/src/types/core_types.rs
|
69
|
-
- ext/parquet/src/types/mod.rs
|
70
|
-
- ext/parquet/src/types/parquet_value.rs
|
71
|
-
- ext/parquet/src/types/record_types.rs
|
72
|
-
- ext/parquet/src/types/timestamp.rs
|
73
|
-
- ext/parquet/src/types/type_conversion.rs
|
74
|
-
- ext/parquet/src/types/writer_types.rs
|
75
|
-
- ext/parquet/src/utils.rs
|
76
|
-
- ext/parquet/src/writer/mod.rs
|
77
40
|
- lib/parquet.rb
|
78
41
|
- lib/parquet.rbi
|
42
|
+
- lib/parquet/3.2/parquet.bundle
|
43
|
+
- lib/parquet/3.3/parquet.bundle
|
44
|
+
- lib/parquet/3.4/parquet.bundle
|
79
45
|
- lib/parquet/version.rb
|
80
46
|
homepage: https://github.com/njaremko/parquet-ruby
|
81
47
|
licenses:
|
@@ -87,7 +53,7 @@ metadata:
|
|
87
53
|
changelog_uri: https://github.com/njaremko/parquet-ruby/blob/main/CHANGELOG.md
|
88
54
|
documentation_uri: https://www.rubydoc.info/gems/parquet
|
89
55
|
funding_uri: https://github.com/sponsors/njaremko
|
90
|
-
post_install_message:
|
56
|
+
post_install_message:
|
91
57
|
rdoc_options: []
|
92
58
|
require_paths:
|
93
59
|
- lib
|
@@ -95,15 +61,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
95
61
|
requirements:
|
96
62
|
- - ">="
|
97
63
|
- !ruby/object:Gem::Version
|
98
|
-
version: 3.
|
64
|
+
version: '3.2'
|
65
|
+
- - "<"
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: 3.5.dev
|
99
68
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
100
69
|
requirements:
|
101
70
|
- - ">="
|
102
71
|
- !ruby/object:Gem::Version
|
103
72
|
version: '0'
|
104
73
|
requirements: []
|
105
|
-
rubygems_version: 3.
|
106
|
-
signing_key:
|
74
|
+
rubygems_version: 3.5.23
|
75
|
+
signing_key:
|
107
76
|
specification_version: 4
|
108
77
|
summary: Parquet library for Ruby, written in Rust
|
109
78
|
test_files: []
|