bytebuffer 0.1.0 → 0.1.2
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/pages.yml +1 -1
- data/.github/workflows/publish.yml +12 -6
- data/Gemfile +0 -1
- data/Gemfile.lock +1 -3
- data/bytebuffer.gemspec +1 -1
- data/lib/bytebuffer/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fcf04bc28e0a4924f3e2d0136ced6b55a703186d1e263cfb9c77d4442b308646
|
4
|
+
data.tar.gz: dd84109550bc5466a6a4d12ee0b86895f09a302d896de86da51f616688b90c28
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: edb89474c47c798eedc09d7aff09ca18f81997b39e473f75145662a78dd8708975e30b124afbfa849d980dcd6bdb2a31591605122a836719e6c3909e5479be60
|
7
|
+
data.tar.gz: 996099829de8c76327375e747fea7196c956201393464507c5fd1ee3b18fe6e99e954244e1e6a97ff88c4232e29da7a93e1282861c0e3c4c03a52c791c199304
|
data/.github/workflows/pages.yml
CHANGED
@@ -29,7 +29,7 @@ jobs:
|
|
29
29
|
uses: ruby/setup-ruby@v1
|
30
30
|
with:
|
31
31
|
ruby-version: '3.3'
|
32
|
-
|
32
|
+
- run: bundle install
|
33
33
|
|
34
34
|
- name: Setup Rust
|
35
35
|
uses: hecrj/setup-rust-action@v2
|
@@ -59,7 +59,7 @@ jobs:
|
|
59
59
|
uses: ruby/setup-ruby@v1
|
60
60
|
with:
|
61
61
|
ruby-version: '3.3'
|
62
|
-
|
62
|
+
- run: bundle install
|
63
63
|
|
64
64
|
- name: Setup Rust
|
65
65
|
uses: hecrj/setup-rust-action@v2
|
@@ -70,19 +70,25 @@ jobs:
|
|
70
70
|
uses: actions/download-artifact@v4
|
71
71
|
with:
|
72
72
|
name: extension-linux
|
73
|
-
path: ext/libext.so
|
73
|
+
path: "./ext/libext.so"
|
74
74
|
|
75
75
|
- name: Download build windows artifacts
|
76
76
|
uses: actions/download-artifact@v4
|
77
77
|
with:
|
78
78
|
name: extension-windows
|
79
|
-
path: ext/libext.dll
|
79
|
+
path: "./ext/libext.dll"
|
80
80
|
|
81
81
|
- name: Download build macos artifacts
|
82
82
|
uses: actions/download-artifact@v4
|
83
83
|
with:
|
84
84
|
name: extension-macos
|
85
|
-
path: ext/libext.dylib
|
85
|
+
path: "./ext/libext.dylib"
|
86
|
+
|
87
|
+
- name: Build package gem
|
88
|
+
run: bundle exec rake gem:package
|
89
|
+
|
90
|
+
- name: Configure Trusted Publisher
|
91
|
+
uses: rubygems/configure-rubygems-credentials@v1.0.0
|
86
92
|
|
87
93
|
- name: Publish Gem
|
88
|
-
|
94
|
+
run: gem push pkg/*.gem
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
bytebuffer (0.1.
|
4
|
+
bytebuffer (0.1.2)
|
5
5
|
ffi (~> 1.17)
|
6
6
|
|
7
7
|
GEM
|
@@ -20,7 +20,6 @@ GEM
|
|
20
20
|
ffi (1.17.0-x86_64-darwin)
|
21
21
|
ffi (1.17.0-x86_64-linux-gnu)
|
22
22
|
ffi (1.17.0-x86_64-linux-musl)
|
23
|
-
gem-release (2.2.2)
|
24
23
|
rake (13.2.1)
|
25
24
|
rspec (3.13.0)
|
26
25
|
rspec-core (~> 3.13.0)
|
@@ -59,7 +58,6 @@ PLATFORMS
|
|
59
58
|
|
60
59
|
DEPENDENCIES
|
61
60
|
bytebuffer!
|
62
|
-
gem-release
|
63
61
|
rake (~> 13.0)
|
64
62
|
rspec (~> 3.12)
|
65
63
|
simplecov
|
data/bytebuffer.gemspec
CHANGED
@@ -19,5 +19,5 @@ GEM_SPEC = Gem::Specification.new do |spec|
|
|
19
19
|
spec.extensions = "ext/extconf.rb"
|
20
20
|
spec.require_paths = ['lib']
|
21
21
|
|
22
|
-
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
22
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } + Dir["ext/*.so"] + Dir["ext/*.dylib"] + Dir["ext/*.dll"]
|
23
23
|
end
|
data/lib/bytebuffer/version.rb
CHANGED