canal 0.0.3 → 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
- SHA1:
3
- metadata.gz: 6d161ce583930471d7dd171b918f8a69dc115296
4
- data.tar.gz: adf0e0d7b4702a0fa840984bcc3035721747883d
2
+ SHA256:
3
+ metadata.gz: 10c686c0e62cfb803619452f989fc677bd28530a6090ea39c02dcb90971371a7
4
+ data.tar.gz: 373ef203136ab8ee0e5df4ea3d8bb2e98a53be7e985e464f84e016661b1dc87b
5
5
  SHA512:
6
- metadata.gz: b8b3f48cea170db0439d30ac59a6368b96760c7f602ed4e7cf24dbc9e1dc865efa6b02a7f7b3d8b9214cabe86910a419205fdeb7bf48e8366450a75c422250b0
7
- data.tar.gz: 666bb3ab504b3030ef073bb4bd14a4015d6824c6fe4629ef0bd4eade0d4293ee1c168f472fa018eb29e602aa2eea533ae67f63754e6a1473e938889cd7ed99ac
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
@@ -0,0 +1,31 @@
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
+ name: Ruby
9
+
10
+ on:
11
+ push:
12
+ branches: [ main ]
13
+ pull_request:
14
+ branches: [ main ]
15
+
16
+ jobs:
17
+ test:
18
+ runs-on: ubuntu-latest
19
+ strategy:
20
+ matrix:
21
+ ruby-version: ['3.3']
22
+
23
+ steps:
24
+ - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
25
+ - name: Set up Ruby
26
+ uses: ruby/setup-ruby@2a18b06812b0e15bb916e1df298d3e740422c47e # v1
27
+ with:
28
+ ruby-version: ${{ matrix.ruby-version }}
29
+ bundler-cache: true
30
+ - name: Run tests
31
+ run: bundle exec rake
data/.gitignore CHANGED
@@ -3,7 +3,6 @@
3
3
  .bundle
4
4
  .config
5
5
  .yardoc
6
- Gemfile.lock
7
6
  InstalledFiles
8
7
  _yardoc
9
8
  coverage
data/Gemfile.lock ADDED
@@ -0,0 +1,23 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ canal (0.0.5)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ minitest (5.14.4)
10
+ rake (13.0.6)
11
+
12
+ PLATFORMS
13
+ arm64-darwin-24
14
+ x86_64-linux
15
+
16
+ DEPENDENCIES
17
+ bundler (~> 2.2)
18
+ canal!
19
+ minitest
20
+ rake
21
+
22
+ BUNDLED WITH
23
+ 2.5.23
data/README.md CHANGED
@@ -1,42 +1,37 @@
1
1
  # Canal
2
2
 
3
- Build functions out of methods.
3
+ [![Gem Version](https://badge.fury.io/rb/canal.svg)](https://badge.fury.io/rb/canal)
4
4
 
5
- ## Examples
5
+ Canal is an utility that builds callable objects out of a chain of method calls. It can be used to write simpler and shorter code that avoids using blocks or lambdas.
6
6
 
7
- Canal can allow point-free expressions. For example, when using `map`:
7
+ ## Usage
8
+
9
+ Include the `canal` gem and expose the `canal` method:
8
10
 
9
11
  ```ruby
10
- %w{10010101 11100 10110}.map(&canal.to_i(2).to_s.reverse.to_i.to_s(2))
12
+ require 'canal'
11
13
  ```
12
14
 
13
- is equivalent to
15
+ ### Using canals instead of lambdas
14
16
 
15
17
  ```ruby
16
- %w{10010101 11100 10110}.map do |x|
17
- x.to_i(2).to_s.reverse.to_i.to_s(2)
18
- end
18
+ lambda { |x| x.to_s(2) }
19
+ canal.to_s(2)
19
20
  ```
20
21
 
21
- ### Identity
22
-
23
- An empty canal is the identity function.
22
+ ### Using canals instead of blocks
24
23
 
25
24
  ```ruby
26
- [1, 2, 3].map(&canal)
27
- => [1, 2, 3]
25
+ [1, 2, 3].map { |value| value + 1 }
26
+ [1, 2, 3].map(&canal + 1)
28
27
  ```
29
28
 
30
- Exemple: Count truthy values.
31
-
32
29
  ```ruby
33
- [true, false, nil, "hey", 4].count(&canal)
34
- => 3
30
+ [1, 2, 3].select { |value| value > 1 }
31
+ [1, 2, 3].select(&canal > 1)
35
32
  ```
36
33
 
37
- ### Operators
38
-
39
- Fetch key in list of hash.
34
+ ### Using hashes
40
35
 
41
36
  ```ruby
42
37
  people = [{ name: "Alice" }, { name: "Bob" }]
@@ -44,11 +39,14 @@ people.map(&canal[:name])
44
39
  => ["Alice", "Bob"]
45
40
  ```
46
41
 
47
- Multiply list of number by 2.
42
+ ### Nesting canals
48
43
 
49
44
  ```ruby
50
- (0..5).map(&canal * 2)
51
- => [0, 2, 4, 6, 8, 10]
45
+ # Format a 2D array into a grid
46
+ rows = [[1, 2], [31, 4]]
47
+ puts rows.map(&canal.map(&canal.to_s.ljust(3, ' ')).join).join("\n")
48
+ 1 2
49
+ 31 4
52
50
  ```
53
51
 
54
52
  ## Installation
data/Rakefile CHANGED
@@ -1 +1,9 @@
1
1
  require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new do |t|
5
+ t.test_files = FileList['test/**/*_test.rb']
6
+ end
7
+ desc "Run tests"
8
+
9
+ task default: [:test]
data/canal.gemspec CHANGED
@@ -6,11 +6,11 @@ require 'canal/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "canal"
8
8
  spec.version = Canal::VERSION
9
- spec.authors = ["Benoit Cote-Jodoin"]
9
+ spec.authors = ["becojo"]
10
10
  spec.email = ["benoit@bcj.io"]
11
- spec.summary = %q{Partial application of a chain of methods.}
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 = ""
13
+ spec.homepage = "https://github.com/becojo/canal"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
@@ -18,6 +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", "~> 1.5"
21
+ spec.add_development_dependency "bundler", "~> 2.2"
22
22
  spec.add_development_dependency "rake"
23
+ spec.add_development_dependency "minitest"
23
24
  end
data/lib/canal/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Canal
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.5"
3
3
  end
data/lib/canal.rb CHANGED
@@ -2,22 +2,18 @@ require "canal/version"
2
2
 
3
3
  module Canal
4
4
  class Context
5
- def initialize
6
- @functions = []
5
+ def initialize(functions=[])
6
+ @functions = functions.freeze
7
7
  end
8
8
 
9
- def method_missing(name, *args, &block)
10
- functions = @functions
11
- Canal::Context.new.instance_eval {
12
- @functions = functions + [[name, args, block]]
13
- self
14
- }
9
+ def method_missing(name, *args, **kwargs, &block)
10
+ Canal::Context.new(@functions + [[name, args, kwargs, block]])
15
11
  end
16
12
 
17
13
  def call(object)
18
14
  @functions.reduce(object) do |object, function|
19
- name, args, block = function
20
- object.send(name, *args, &block)
15
+ name, args, kwargs, block = function
16
+ object.send(name, *args, **kwargs, &block)
21
17
  end
22
18
  end
23
19
 
@@ -0,0 +1,55 @@
1
+ require_relative 'test_helper'
2
+
3
+ class CanalTest < Minitest::Test
4
+ def test_identity
5
+ f = canal
6
+ value = Object.new
7
+
8
+ assert_equal(value.object_id, f.(value).object_id)
9
+ end
10
+
11
+ def test_hash
12
+ f = canal[:foo]
13
+ value = { foo: :bar }
14
+
15
+ assert_equal(:bar, f.(value))
16
+ end
17
+
18
+ def test_operators
19
+ operators = %w(+ - * / % ** == === != < > <= >=)
20
+
21
+ operators.each do |operator|
22
+ a = 123
23
+ b = 65
24
+
25
+ assert_equal(a.send(operator, b), canal.send(operator, b).(a))
26
+ end
27
+ end
28
+
29
+ def test_immutability
30
+ f = canal[:foo]
31
+ g = f[:bar]
32
+
33
+ assert_equal(123, f.({ foo: 123 }))
34
+ assert_equal(456, g.({ foo: { bar: 456 } }))
35
+ refute_equal(f.object_id, g.object_id)
36
+ end
37
+
38
+ def test_kwargs
39
+ f = canal.foo(bar: 123)
40
+ cls = Class.new do
41
+ def foo(bar:)
42
+ bar
43
+ end
44
+ end
45
+
46
+ assert_equal(123, f.(cls.new))
47
+ end
48
+
49
+ def test_block
50
+ f = canal.map(&canal + 1) + [:foo]
51
+ value = [0, 1, 2]
52
+
53
+ assert_equal([1,2,3,:foo], f.(value))
54
+ end
55
+ end
@@ -0,0 +1,3 @@
1
+ require 'minitest/autorun'
2
+
3
+ require 'canal'
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.3
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
- - Benoit Cote-Jodoin
7
+ - becojo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-14 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
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.5'
19
+ version: '2.2'
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: '1.5'
26
+ version: '2.2'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
41
55
  description:
42
56
  email:
43
57
  - benoit@bcj.io
@@ -45,15 +59,20 @@ executables: []
45
59
  extensions: []
46
60
  extra_rdoc_files: []
47
61
  files:
62
+ - ".github/workflows/publish.yml"
63
+ - ".github/workflows/ruby.yml"
48
64
  - ".gitignore"
49
65
  - Gemfile
66
+ - Gemfile.lock
50
67
  - LICENSE.txt
51
68
  - README.md
52
69
  - Rakefile
53
70
  - canal.gemspec
54
71
  - lib/canal.rb
55
72
  - lib/canal/version.rb
56
- homepage: ''
73
+ - test/canal_test.rb
74
+ - test/test_helper.rb
75
+ homepage: https://github.com/becojo/canal
57
76
  licenses:
58
77
  - MIT
59
78
  metadata: {}
@@ -72,9 +91,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
72
91
  - !ruby/object:Gem::Version
73
92
  version: '0'
74
93
  requirements: []
75
- rubyforge_project:
76
- rubygems_version: 2.4.5.1
94
+ rubygems_version: 3.5.22
77
95
  signing_key:
78
96
  specification_version: 4
79
- summary: Partial application of a chain of methods.
80
- test_files: []
97
+ summary: Utility that builds callable objects out of a chain of method calls
98
+ test_files:
99
+ - test/canal_test.rb
100
+ - test/test_helper.rb