canal 0.0.4 → 0.0.5
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/publish.yml +21 -0
- data/.github/workflows/ruby.yml +7 -11
- data/Gemfile.lock +3 -2
- data/canal.gemspec +1 -1
- data/lib/canal/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 10c686c0e62cfb803619452f989fc677bd28530a6090ea39c02dcb90971371a7
|
4
|
+
data.tar.gz: 373ef203136ab8ee0e5df4ea3d8bb2e98a53be7e985e464f84e016661b1dc87b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f741eaab09ce3d78b1e615c2a23e0c9624c556c7d46ba1bc146f3721280a7c060091690ba1da5b46fe8b0b482074521b01f0c92e185990e3f6c507536de49ff7
|
7
|
+
data.tar.gz: 1150364b84c6484457c094b112082e5167e7e6d35d3a5572fa72cb6968e5c43fe27edf529566fdb5b6815e28c970caa48a8b72a580317cb75330f19b84a88d7a
|
@@ -0,0 +1,21 @@
|
|
1
|
+
on:
|
2
|
+
workflow_dispatch:
|
3
|
+
|
4
|
+
permissions: {}
|
5
|
+
|
6
|
+
jobs:
|
7
|
+
publish:
|
8
|
+
runs-on: ubuntu-latest
|
9
|
+
permissions:
|
10
|
+
contents: write
|
11
|
+
id-token: write
|
12
|
+
steps:
|
13
|
+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
14
|
+
with:
|
15
|
+
persist-credentials: false
|
16
|
+
- uses: ruby/setup-ruby@2a18b06812b0e15bb916e1df298d3e740422c47e # v1
|
17
|
+
with:
|
18
|
+
ruby-version: '3.3'
|
19
|
+
bundler-cache: false
|
20
|
+
- run: bundle install
|
21
|
+
- uses: rubygems/release-gem@a25424ba2ba8b387abc8ef40807c2c85b96cbe32 # v1
|
data/.github/workflows/ruby.yml
CHANGED
@@ -9,27 +9,23 @@ name: Ruby
|
|
9
9
|
|
10
10
|
on:
|
11
11
|
push:
|
12
|
-
branches: [
|
12
|
+
branches: [ main ]
|
13
13
|
pull_request:
|
14
|
-
branches: [
|
14
|
+
branches: [ main ]
|
15
15
|
|
16
16
|
jobs:
|
17
17
|
test:
|
18
|
-
|
19
18
|
runs-on: ubuntu-latest
|
20
19
|
strategy:
|
21
20
|
matrix:
|
22
|
-
ruby-version: ['
|
21
|
+
ruby-version: ['3.3']
|
23
22
|
|
24
23
|
steps:
|
25
|
-
- uses: actions/checkout@
|
24
|
+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
26
25
|
- name: Set up Ruby
|
27
|
-
|
28
|
-
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
29
|
-
# uses: ruby/setup-ruby@v1
|
30
|
-
uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
|
26
|
+
uses: ruby/setup-ruby@2a18b06812b0e15bb916e1df298d3e740422c47e # v1
|
31
27
|
with:
|
32
28
|
ruby-version: ${{ matrix.ruby-version }}
|
33
|
-
bundler-cache:
|
29
|
+
bundler-cache: true
|
34
30
|
- name: Run tests
|
35
|
-
run: bundle
|
31
|
+
run: bundle exec rake
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
canal (0.0.
|
4
|
+
canal (0.0.5)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
@@ -10,6 +10,7 @@ GEM
|
|
10
10
|
rake (13.0.6)
|
11
11
|
|
12
12
|
PLATFORMS
|
13
|
+
arm64-darwin-24
|
13
14
|
x86_64-linux
|
14
15
|
|
15
16
|
DEPENDENCIES
|
@@ -19,4 +20,4 @@ DEPENDENCIES
|
|
19
20
|
rake
|
20
21
|
|
21
22
|
BUNDLED WITH
|
22
|
-
2.
|
23
|
+
2.5.23
|
data/canal.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["benoit@bcj.io"]
|
11
11
|
spec.summary = %q{Utility that builds callable objects out of a chain of method calls}
|
12
12
|
# spec.description = %q{TODO: Write a longer description. Optional.}
|
13
|
-
spec.homepage = "https://github.com/
|
13
|
+
spec.homepage = "https://github.com/becojo/canal"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
data/lib/canal/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: canal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- becojo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-12-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -59,6 +59,7 @@ executables: []
|
|
59
59
|
extensions: []
|
60
60
|
extra_rdoc_files: []
|
61
61
|
files:
|
62
|
+
- ".github/workflows/publish.yml"
|
62
63
|
- ".github/workflows/ruby.yml"
|
63
64
|
- ".gitignore"
|
64
65
|
- Gemfile
|
@@ -71,7 +72,7 @@ files:
|
|
71
72
|
- lib/canal/version.rb
|
72
73
|
- test/canal_test.rb
|
73
74
|
- test/test_helper.rb
|
74
|
-
homepage: https://github.com/
|
75
|
+
homepage: https://github.com/becojo/canal
|
75
76
|
licenses:
|
76
77
|
- MIT
|
77
78
|
metadata: {}
|
@@ -90,7 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
90
91
|
- !ruby/object:Gem::Version
|
91
92
|
version: '0'
|
92
93
|
requirements: []
|
93
|
-
rubygems_version: 3.
|
94
|
+
rubygems_version: 3.5.22
|
94
95
|
signing_key:
|
95
96
|
specification_version: 4
|
96
97
|
summary: Utility that builds callable objects out of a chain of method calls
|