ruby_pymill 0.2.0 → 0.2.1
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/README.md +15 -0
- data/lib/ruby_pymill/version.rb +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a7066e476986ad19ddcf36c5d4f2facb7882e3efed7972399c1384dccd3e006b
|
|
4
|
+
data.tar.gz: 26375858e837e22ab68305e38fd55b8ea61942c0fa2a1c418209298ab99d8346
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 76bda36211334b1b286d05345c3497e106654149b84b0ff43b31928a4ebe464d5212a1a80463fe0ba180800beb4e5540dd6bd1d4f4ddafb628ce0c1603046f37
|
|
7
|
+
data.tar.gz: a8ae641e6cdbab208733a053453436f6fb70c0693964b567a3d79ded51590963df98b550e4ef8e3aa9004fe9faae1637fb16cfa901784489f16e65c2b2e03ecc
|
data/README.md
CHANGED
|
@@ -26,6 +26,7 @@ RubyPyMill enables reproducible notebook execution from the Ruby ecosystem.
|
|
|
26
26
|
“Ruby aims to connect people with people, and tools with tools.”
|
|
27
27
|
— Yukihiro “Matz” Matsumoto
|
|
28
28
|
|
|
29
|
+
|
|
29
30
|
## Project Structure
|
|
30
31
|
| Directory | Description |
|
|
31
32
|
|----------|-------------|
|
|
@@ -36,6 +37,15 @@ RubyPyMill enables reproducible notebook execution from the Ruby ecosystem.
|
|
|
36
37
|
| py/ | Python-side environment (Papermill execution) |
|
|
37
38
|
| examples/ | Example notebooks, parameters, and outputs |
|
|
38
39
|
|
|
40
|
+
## Installation
|
|
41
|
+
RubyPyMill is distributed as a RubyGem:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
gem install ruby_pymill
|
|
45
|
+
```
|
|
46
|
+
> Note: RubyPyMill executes Jupyter notebooks via Papermill, so a Python environment is required.
|
|
47
|
+
|
|
48
|
+
|
|
39
49
|
## Setup
|
|
40
50
|
|
|
41
51
|
### Ruby
|
|
@@ -101,6 +111,11 @@ or future web APIs.
|
|
|
101
111
|
The CLI is considered the stable interface.
|
|
102
112
|
The Ruby API is experimental and may change.
|
|
103
113
|
|
|
114
|
+
## Changelog
|
|
115
|
+
|
|
116
|
+
See [CHANGELOG.md](https://github.com/inoue-0852/RubyPyMill-OSS/blob/main/CHANGELOG.md) for release history.
|
|
117
|
+
|
|
118
|
+
|
|
104
119
|
## License
|
|
105
120
|
MIT License
|
|
106
121
|
Copyright (c) 2025 Hiroshi Inoue / OSS-Vision
|
data/lib/ruby_pymill/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby_pymill
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hiroshi Inoue
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-01-
|
|
11
|
+
date: 2026-01-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|
|
@@ -38,10 +38,12 @@ files:
|
|
|
38
38
|
- lib/ruby_pymill.rb
|
|
39
39
|
- lib/ruby_pymill/api.rb
|
|
40
40
|
- lib/ruby_pymill/version.rb
|
|
41
|
-
homepage: https://github.com/inoue-0852/RubyPyMill
|
|
41
|
+
homepage: https://github.com/inoue-0852/RubyPyMill-OSS
|
|
42
42
|
licenses:
|
|
43
43
|
- MIT
|
|
44
|
-
metadata:
|
|
44
|
+
metadata:
|
|
45
|
+
changelog_uri: https://github.com/inoue-0852/RubyPyMill-OSS/blob/main/CHANGELOG.md
|
|
46
|
+
source_code_uri: https://github.com/inoue-0852/RubyPyMill-OSS
|
|
45
47
|
post_install_message:
|
|
46
48
|
rdoc_options: []
|
|
47
49
|
require_paths:
|