proc_utils 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.travis.yml +5 -0
- data/Gemfile +5 -0
- data/LICENSE.txt +21 -0
- data/README.md +95 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/proc_utils.rb +46 -0
- data/lib/proc_utils/core_ext/proc.rb +15 -0
- data/lib/proc_utils/core_ext/symbol.rb +15 -0
- data/lib/proc_utils/version.rb +3 -0
- data/proc_utils.gemspec +26 -0
- metadata +99 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: bec3dbe35b1d3640efaa672ec7ca879e3ba3a844
|
4
|
+
data.tar.gz: 1dae544647df6b0c57773b001d8b8ea2fc93ad8e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d55e9c610b64d92723daf654dd733d694972c61c8688e64f7614141bd94596a2fba90f476a12627d22cf8b55076f6960b9d1d118281b51a9948506d6481ca873
|
7
|
+
data.tar.gz: f63cba84a1ac619ad75a65b95df7fac3faf22acc8b8e2ffa3f09106ec62023c26c3c84c37c5a3a4d5a93afaabb672902e70b8d5babc8d165251d7e578cf0183d
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 TODO: Write your name
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
# ProcUtils
|
2
|
+
|
3
|
+
A set of functional utilities for working with callables in Ruby.
|
4
|
+
|
5
|
+
Heavily inspired by [lodash](https://lodash.com/docs).
|
6
|
+
|
7
|
+
## Introduction
|
8
|
+
|
9
|
+
I love Symbol#to_proc. It just feels good.
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
emails.each(&:deliver)
|
13
|
+
```
|
14
|
+
|
15
|
+
However, if your method takes an argument, you need to refactor to use a block.
|
16
|
+
|
17
|
+
```
|
18
|
+
emails.each { |email| email.deliver(:hello) }
|
19
|
+
```
|
20
|
+
|
21
|
+
What if you could do this?
|
22
|
+
|
23
|
+
```
|
24
|
+
emails.each(&:deliver.partial(:hello))
|
25
|
+
```
|
26
|
+
|
27
|
+
## Installation
|
28
|
+
|
29
|
+
Add this line to your application's Gemfile:
|
30
|
+
|
31
|
+
```ruby
|
32
|
+
gem 'proc_utils'
|
33
|
+
```
|
34
|
+
|
35
|
+
And then execute:
|
36
|
+
|
37
|
+
$ bundle
|
38
|
+
|
39
|
+
Or install it yourself as:
|
40
|
+
|
41
|
+
$ gem install proc_utils
|
42
|
+
|
43
|
+
## Extending Procs
|
44
|
+
|
45
|
+
Because this is a core extension, you have to opt-in.
|
46
|
+
|
47
|
+
```
|
48
|
+
require 'proc_utils/core_ext/proc'
|
49
|
+
```
|
50
|
+
|
51
|
+
Now, procs will have the following methods:
|
52
|
+
|
53
|
+
* partial
|
54
|
+
* partial_right
|
55
|
+
* bind
|
56
|
+
* flip
|
57
|
+
* wrap
|
58
|
+
* compose
|
59
|
+
* memoize
|
60
|
+
* once
|
61
|
+
|
62
|
+
## Extending Symbols
|
63
|
+
|
64
|
+
```
|
65
|
+
require 'proc_utils/core_ext/symbol'
|
66
|
+
```
|
67
|
+
|
68
|
+
Now, symbols will have the following methods:
|
69
|
+
|
70
|
+
* partial
|
71
|
+
* partial_right
|
72
|
+
* bind
|
73
|
+
* memoize
|
74
|
+
* once
|
75
|
+
|
76
|
+
## Using without CoreExtensions
|
77
|
+
|
78
|
+
I get it, core extensions are scary. Lucky for you, ProcUtils offers pure functions.
|
79
|
+
|
80
|
+
For example:
|
81
|
+
|
82
|
+
```
|
83
|
+
func = proc { |name| puts name }
|
84
|
+
func = ProcUtils.bind(func, 'Rick Flair')
|
85
|
+
func.call
|
86
|
+
```
|
87
|
+
|
88
|
+
## Contributing
|
89
|
+
|
90
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/rzane/proc_utils.
|
91
|
+
|
92
|
+
|
93
|
+
## License
|
94
|
+
|
95
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "proc_utils"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/lib/proc_utils.rb
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
require "proc_utils/version"
|
2
|
+
|
3
|
+
module ProcUtils
|
4
|
+
ALL = %i(partial partial_right bind flip wrap compose memoize once)
|
5
|
+
SYM = ALL - %i(flip wrap compose)
|
6
|
+
|
7
|
+
class << self
|
8
|
+
def partial(subject, *bound_args)
|
9
|
+
proc { |receiver, *args| subject.call(receiver, *bound_args, *args) }
|
10
|
+
end
|
11
|
+
|
12
|
+
def partial_right(subject, *bound_args)
|
13
|
+
proc { |receiver, *args| subject.call(receiver, *args, *bound_args) }
|
14
|
+
end
|
15
|
+
|
16
|
+
def bind(subject, receiver, *bound_args)
|
17
|
+
proc { |*args| subject.call(receiver, *bound_args, *args) }
|
18
|
+
end
|
19
|
+
|
20
|
+
def flip(subject)
|
21
|
+
proc { |*args| subject.call(*args.reverse) }
|
22
|
+
end
|
23
|
+
|
24
|
+
def wrap(subject, other)
|
25
|
+
proc { |*args| subject.call(other, *args) }
|
26
|
+
end
|
27
|
+
|
28
|
+
def compose(subject, other)
|
29
|
+
proc { |*args| subject.call(*other.call(*args)) }
|
30
|
+
end
|
31
|
+
|
32
|
+
def memoize(subject)
|
33
|
+
cache = {}
|
34
|
+
proc { |*args| cache[args] ||= subject.call(*args) }
|
35
|
+
end
|
36
|
+
|
37
|
+
def once(subject)
|
38
|
+
cache, called = nil, false
|
39
|
+
|
40
|
+
proc do |*args|
|
41
|
+
cache, called = subject.call(*args), true unless called
|
42
|
+
cache
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'proc_utils'
|
2
|
+
|
3
|
+
module ProcUtils
|
4
|
+
module CoreExt
|
5
|
+
module Proc
|
6
|
+
ProcUtils::ALL.each do |meth|
|
7
|
+
define_method meth do |*args|
|
8
|
+
ProcUtils.send(meth, self, *args)
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
::Proc.prepend ProcUtils::CoreExt::Proc
|
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'proc_utils'
|
2
|
+
|
3
|
+
module ProcUtils
|
4
|
+
module CoreExt
|
5
|
+
module Symbol
|
6
|
+
ProcUtils::SYM.each do |meth|
|
7
|
+
define_method meth do |*args|
|
8
|
+
ProcUtils.send(meth, to_proc, *args)
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
::Symbol.prepend ProcUtils::CoreExt::Symbol
|
data/proc_utils.gemspec
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'proc_utils/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "proc_utils"
|
8
|
+
spec.version = ProcUtils::VERSION
|
9
|
+
spec.authors = ["Ray Zane"]
|
10
|
+
spec.email = ["raymondzane@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{A set of functional utilities for working with callables.}
|
13
|
+
spec.homepage = "https://github.com/rzane/proc_utils"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
17
|
+
f.match(%r{^(test|spec|features)/})
|
18
|
+
end
|
19
|
+
spec.bindir = "exe"
|
20
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
21
|
+
spec.require_paths = ["lib"]
|
22
|
+
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.14"
|
24
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
25
|
+
spec.add_development_dependency "minitest", "~> 5.0"
|
26
|
+
end
|
metadata
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: proc_utils
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ray Zane
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-04-05 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.14'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.14'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.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: '5.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '5.0'
|
55
|
+
description:
|
56
|
+
email:
|
57
|
+
- raymondzane@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- ".gitignore"
|
63
|
+
- ".travis.yml"
|
64
|
+
- Gemfile
|
65
|
+
- LICENSE.txt
|
66
|
+
- README.md
|
67
|
+
- Rakefile
|
68
|
+
- bin/console
|
69
|
+
- bin/setup
|
70
|
+
- lib/proc_utils.rb
|
71
|
+
- lib/proc_utils/core_ext/proc.rb
|
72
|
+
- lib/proc_utils/core_ext/symbol.rb
|
73
|
+
- lib/proc_utils/version.rb
|
74
|
+
- proc_utils.gemspec
|
75
|
+
homepage: https://github.com/rzane/proc_utils
|
76
|
+
licenses:
|
77
|
+
- MIT
|
78
|
+
metadata: {}
|
79
|
+
post_install_message:
|
80
|
+
rdoc_options: []
|
81
|
+
require_paths:
|
82
|
+
- lib
|
83
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - ">="
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '0'
|
88
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
|
+
requirements:
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
93
|
+
requirements: []
|
94
|
+
rubyforge_project:
|
95
|
+
rubygems_version: 2.6.10
|
96
|
+
signing_key:
|
97
|
+
specification_version: 4
|
98
|
+
summary: A set of functional utilities for working with callables.
|
99
|
+
test_files: []
|