canal 0.0.4 → 0.0.6

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: f5b7990402447043e96cf5c8086fc770ceb07ab941940b72488247e55e147b57
4
+ data.tar.gz: 2bdaab757b78739fb64c40a1e795a304b4fdcc0c25177e4fea02887e64305fa2
5
5
  SHA512:
6
- metadata.gz: bc0eba4157e6f607507d941edfaa6c4f5bc4b09f194a6121227002bee1e8cb35095c29e7956b4859291c1dbc0596ca7da107d1479f055764d33597e464df1e14
7
- data.tar.gz: f0426bd2ad3ac5f63b6df7620b52928c032edf3f44060af132e2524db22a89b92f7351b5cd2d1bebdb041448efe69d6528992c77ee86de92fcad891e78240d6a
6
+ metadata.gz: e217cef801f2eef8e8f35b0a792069c4eccbe7e5ec6a181ba43ecd26ee02dc8b3263352d55c4163a00a10d852247cf90495a1b54f0b03e47a8c6099766731b31
7
+ data.tar.gz: 3a6191208c3d0fd0d911697fc7069206447a4d62b66682f55dfda467b88597d4e97a6dcdc274cf3a45da83211fff601929ce130271d4f42e072109c62500b1de
@@ -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
@@ -1,35 +1,26 @@
1
- # This workflow uses actions that are not certified by GitHub.
2
- # They are provided by a third-party and are governed by
3
- # separate terms of service, privacy policy, and support
4
- # documentation.
5
- # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6
- # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
-
8
1
  name: Ruby
9
2
 
10
3
  on:
11
4
  push:
12
- branches: [ master ]
5
+ branches: [ main ]
13
6
  pull_request:
14
- branches: [ master ]
7
+ branches: [ main ]
15
8
 
16
9
  jobs:
17
10
  test:
18
-
19
11
  runs-on: ubuntu-latest
20
12
  strategy:
21
13
  matrix:
22
- ruby-version: ['2.7']
14
+ ruby-version: ['3.3']
23
15
 
24
16
  steps:
25
- - uses: actions/checkout@v2
17
+ - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
18
+ with:
19
+ persist-credentials: false
26
20
  - 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
21
+ uses: ruby/setup-ruby@2a18b06812b0e15bb916e1df298d3e740422c47e # v1
31
22
  with:
32
23
  ruby-version: ${{ matrix.ruby-version }}
33
- bundler-cache: false # runs 'bundle install' and caches installed gems automatically
24
+ bundler-cache: true
34
25
  - name: Run tests
35
- run: bundle && bundle exec rake
26
+ run: bundle exec rake
data/Gemfile.lock CHANGED
@@ -1,22 +1,27 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- canal (0.0.4)
4
+ canal (0.0.6)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- minitest (5.14.4)
10
- rake (13.0.6)
9
+ minitest (5.25.4)
10
+ rake (13.2.1)
11
11
 
12
12
  PLATFORMS
13
- x86_64-linux
13
+ ruby
14
14
 
15
15
  DEPENDENCIES
16
- bundler (~> 2.2)
16
+ bundler (~> 2.6)
17
17
  canal!
18
18
  minitest
19
19
  rake
20
20
 
21
+ CHECKSUMS
22
+ canal (0.0.6)
23
+ minitest (5.25.4) sha256=9cf2cae25ac4dfc90c988ebc3b917f53c054978b673273da1bd20bcb0778f947
24
+ rake (13.2.1) sha256=46cb38dae65d7d74b6020a4ac9d48afed8eb8149c040eccf0523bec91907059d
25
+
21
26
  BUNDLED WITH
22
- 2.2.32
27
+ 2.6.1
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2015 Benoit Cote-Jodoin
1
+ Copyright (c) 2024 Benoit Cote-Jodoin
2
2
 
3
3
  MIT License
4
4
 
data/canal.gemspec CHANGED
@@ -7,10 +7,10 @@ Gem::Specification.new do |spec|
7
7
  spec.name = "canal"
8
8
  spec.version = Canal::VERSION
9
9
  spec.authors = ["becojo"]
10
- spec.email = ["benoit@bcj.io"]
10
+ spec.email = ["gems@becojo.com"]
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($/)
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
20
 
21
- spec.add_development_dependency "bundler", "~> 2.2"
21
+ spec.add_development_dependency "bundler", "~> 2.6"
22
22
  spec.add_development_dependency "rake"
23
23
  spec.add_development_dependency "minitest"
24
24
  end
data/lib/canal/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Canal
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.6"
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.6
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-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '2.2'
19
+ version: '2.6'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '2.2'
26
+ version: '2.6'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -54,11 +54,12 @@ dependencies:
54
54
  version: '0'
55
55
  description:
56
56
  email:
57
- - benoit@bcj.io
57
+ - gems@becojo.com
58
58
  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