ironcalc 0.7.1.1 → 0.7.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 804067b5c8cc5a92a2d534aab0607141f230dad1ab2fd066c524751575973a27
4
- data.tar.gz: d43082fa1488ecd4c53d402caf0ac0a036c4252a7e790e73db6329a1808b2755
3
+ metadata.gz: de45ff54b1be217c3f30a6f852309a983e0b6b0fa7e36494a008686ec721d22e
4
+ data.tar.gz: 29903af8a864ffee407967e2cc51ef24dadf0e8452b90d3ea30063db27468d5b
5
5
  SHA512:
6
- metadata.gz: 134e7f5f870f991608cc8820c47d2e772a6e5ef8e52da3b56dcb1137ec813acf3ba120f8437054484b8a1c3d7736f7cc4df5d139a90315300f0bd43bb26e5b5c
7
- data.tar.gz: e13e1e273363971de43122df5cec5e3ad27a51d5b8eb7afc1cf4a973051726ad1dbfa3579e8d9f55947ad5f3226e5b097cbafb420b486c9bea46f2048454b644
6
+ metadata.gz: 6aefffeef34bc613ffbc89d9a69ae8da786d78feaeca58b7ac1e63ed2ab3ad7ae1913974a92d8d00a49de4b3ad22906777e05e5d04c883d3e1cc90337a12f404
7
+ data.tar.gz: f237bc0845d4786d0592b366acd08aba6f8a4635d48422fdebc0fdbe125bc387ead69c030bd7b9d42194dce1e5ab5bd6ebfe3e945e69de983ab7a0cb61578e1f
data/.yardopts ADDED
@@ -0,0 +1,11 @@
1
+ --markup markdown
2
+ --main README.md
3
+ --readme README.md
4
+ --output-dir doc
5
+ --no-private
6
+ lib/**/*.rb
7
+ -
8
+ README.md
9
+ CHANGELOG.md
10
+ LICENSE-MIT.md
11
+ LICENSE-Apache-2.0.md
data/CHANGELOG.md CHANGED
@@ -1,4 +1,16 @@
1
- ## 0.7.1.0 (unreleased)
1
+ ## 0.7.1.4
2
+
3
+ - build for Ruby 4.0, push with attestation, include .yardopts
4
+
5
+ ## 0.7.1.3
6
+
7
+ - fix build-provenance and setup github releases
8
+
9
+ ## 0.7.1.2
10
+
11
+ - Ship precompiled native gems for common platforms (Linux, macOS, Windows),
12
+ so installing no longer rebuilds the IronCalc engine from source
13
+ - Publish via RubyGems Trusted Publishing with SigStore build provenance
2
14
 
3
15
  ## 0.7.1.1
4
16
 
data/README.md CHANGED
@@ -16,7 +16,9 @@ Add this line to your application's Gemfile:
16
16
  gem "ironcalc"
17
17
  ```
18
18
 
19
- A Rust toolchain is required to build from source.
19
+ On common platforms (Linux, macOS, Windows) a precompiled gem is installed, so
20
+ no Rust toolchain is required. On other platforms the gem builds the IronCalc
21
+ engine from source, which requires a Rust toolchain.
20
22
 
21
23
  ## Usage
22
24
 
@@ -1,3 +1,3 @@
1
1
  module IronCalc
2
- VERSION = "0.7.1.1"
2
+ VERSION = "0.7.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ironcalc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1.1
4
+ version: 0.7.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - jvdp
@@ -13,24 +13,27 @@ dependencies:
13
13
  name: rb_sys
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
- - - ">="
16
+ - - "~>"
17
17
  - !ruby/object:Gem::Version
18
- version: '0'
18
+ version: '0.9'
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
- - - ">="
23
+ - - "~>"
24
24
  - !ruby/object:Gem::Version
25
- version: '0'
26
- description: 'Ruby bindings for the IronCalc spreadsheet engine. Create, read and
27
- manipulate xlsx files: manage sheets, set and read cell values, and evaluate spreadsheets.'
25
+ version: '0.9'
26
+ description: |
27
+ Ruby bindings for the IronCalc spreadsheet engine. Create, read and
28
+ manipulate xlsx files: manage sheets, set and read cell values, and
29
+ evaluate formulas.
28
30
  email: jaap@vage-ideeen.nl
29
31
  executables: []
30
32
  extensions:
31
33
  - ext/ironcalc/extconf.rb
32
34
  extra_rdoc_files: []
33
35
  files:
36
+ - ".yardopts"
34
37
  - CHANGELOG.md
35
38
  - Cargo.lock
36
39
  - Cargo.toml
@@ -47,13 +50,13 @@ files:
47
50
  - lib/ironcalc/model.rb
48
51
  - lib/ironcalc/native_methods.rb
49
52
  - lib/ironcalc/version.rb
50
- homepage: https://github.com/ironcalc/ironcalc-ruby
53
+ homepage: https://github.com/jvdp/IronCalc-Ruby
51
54
  licenses:
52
55
  - MIT OR Apache-2.0
53
56
  metadata:
54
57
  homepage_uri: https://www.ironcalc.com/
55
- source_code_uri: https://github.com/ironcalc/ironcalc-ruby
56
- bug_tracker_uri: https://github.com/ironcalc/ironcalc-ruby/issues
58
+ source_code_uri: https://github.com/jvdp/IronCalc-Ruby
59
+ bug_tracker_uri: https://github.com/jvdp/IronCalc-Ruby/issues
57
60
  rdoc_options: []
58
61
  require_paths:
59
62
  - lib
@@ -68,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
68
71
  - !ruby/object:Gem::Version
69
72
  version: '0'
70
73
  requirements: []
71
- rubygems_version: 4.0.10
74
+ rubygems_version: 3.6.9
72
75
  specification_version: 4
73
76
  summary: Create, edit and evaluate Excel spreadsheets
74
77
  test_files: []