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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3549e926879ac4c855cca9bc05ad3aefad9e3d7a36f03bcdf274c366f0e14369
4
- data.tar.gz: 3ef5f76f46e7a00899f2211d27032f774fdee90f3e47b7069ba84025b229aff4
3
+ metadata.gz: 10c686c0e62cfb803619452f989fc677bd28530a6090ea39c02dcb90971371a7
4
+ data.tar.gz: 373ef203136ab8ee0e5df4ea3d8bb2e98a53be7e985e464f84e016661b1dc87b
5
5
  SHA512:
6
- metadata.gz: bc0eba4157e6f607507d941edfaa6c4f5bc4b09f194a6121227002bee1e8cb35095c29e7956b4859291c1dbc0596ca7da107d1479f055764d33597e464df1e14
7
- data.tar.gz: f0426bd2ad3ac5f63b6df7620b52928c032edf3f44060af132e2524db22a89b92f7351b5cd2d1bebdb041448efe69d6528992c77ee86de92fcad891e78240d6a
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
@@ -9,27 +9,23 @@ name: Ruby
9
9
 
10
10
  on:
11
11
  push:
12
- branches: [ master ]
12
+ branches: [ main ]
13
13
  pull_request:
14
- branches: [ master ]
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: ['2.7']
21
+ ruby-version: ['3.3']
23
22
 
24
23
  steps:
25
- - uses: actions/checkout@v2
24
+ - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
26
25
  - name: Set up Ruby
27
- # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
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: false # runs 'bundle install' and caches installed gems automatically
29
+ bundler-cache: true
34
30
  - name: Run tests
35
- run: bundle && bundle exec rake
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)
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.2.32
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/Becojo/canal"
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
@@ -1,3 +1,3 @@
1
1
  module Canal
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
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
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: 2021-12-04 00:00:00.000000000 Z
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/Becojo/canal
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.1.2
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