ensemble_cast 0.1.0 → 0.1.1
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/README.md +1 -1
- data/ensemble_cast.gemspec +4 -2
- data/lib/ensemble_cast/version.rb +1 -1
- data/lib/ensemble_cast.rb +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4b2ff29d3ec664fb5386e1f737c27b4b88101b400960ee168a4701f5e8524d55
|
|
4
|
+
data.tar.gz: 98cea06a0031360f288f59dfa961e9eb58811afa3ae03e0d0e0d61affc75dc12
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 65d7ea1a937a7394e2309a15ad20eaf17ff001b9d9cfaf55157ccf2401a259ad6a3a80a279ee9f496e7b9a31f3807007c27e5fd31a4918327ffbfc5a7b138680
|
|
7
|
+
data.tar.gz: 2f53ea3d4818a88b235d9bf9eafa36de8ecc8a1bf80ceed3e5c138dc89beec367ec86c2e21c5830f18672bb524924b6b47a6e8969c24e325e94502fdc18841d9
|
data/README.md
CHANGED
|
@@ -46,7 +46,7 @@ end
|
|
|
46
46
|
|
|
47
47
|
## Contributing
|
|
48
48
|
|
|
49
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
49
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/tetetratra/ensemble_cast. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/tetetratra/ensemble_cast/blob/main/CODE_OF_CONDUCT.md).
|
|
50
50
|
|
|
51
51
|
## License
|
|
52
52
|
|
data/ensemble_cast.gemspec
CHANGED
|
@@ -11,15 +11,17 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
spec.summary = "Evaluate block in first argument"
|
|
12
12
|
spec.description = <<~EOS
|
|
13
13
|
Evaluate block in first argument.
|
|
14
|
+
|
|
14
15
|
You can use `Module#ensemble(method_name)` method.
|
|
16
|
+
|
|
15
17
|
When you call `ensemble(method_name)`, block passed to `method_name` will be evaluated in the context of the first argument of the block.
|
|
16
18
|
EOS
|
|
17
|
-
spec.homepage = "https://github.com/tetetratra/
|
|
19
|
+
spec.homepage = "https://github.com/tetetratra/ensemble_cast"
|
|
18
20
|
spec.license = "MIT"
|
|
19
21
|
spec.required_ruby_version = ">= 3.1.0"
|
|
20
22
|
|
|
21
23
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
22
|
-
spec.metadata["source_code_uri"] = "https://github.com/tetetratra/
|
|
24
|
+
spec.metadata["source_code_uri"] = "https://github.com/tetetratra/ensemble_cast"
|
|
23
25
|
|
|
24
26
|
# Specify which files should be added to the gem when it is released.
|
|
25
27
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
data/lib/ensemble_cast.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ensemble_cast
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- tetetratra
|
|
@@ -12,7 +12,9 @@ date: 2023-04-23 00:00:00.000000000 Z
|
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |
|
|
14
14
|
Evaluate block in first argument.
|
|
15
|
+
|
|
15
16
|
You can use `Module#ensemble(method_name)` method.
|
|
17
|
+
|
|
16
18
|
When you call `ensemble(method_name)`, block passed to `method_name` will be evaluated in the context of the first argument of the block.
|
|
17
19
|
email:
|
|
18
20
|
- 44367208+tetetratra@users.noreply.github.com
|
|
@@ -34,12 +36,12 @@ files:
|
|
|
34
36
|
- ext/ensemble_cast/extconf.rb
|
|
35
37
|
- lib/ensemble_cast.rb
|
|
36
38
|
- lib/ensemble_cast/version.rb
|
|
37
|
-
homepage: https://github.com/tetetratra/
|
|
39
|
+
homepage: https://github.com/tetetratra/ensemble_cast
|
|
38
40
|
licenses:
|
|
39
41
|
- MIT
|
|
40
42
|
metadata:
|
|
41
|
-
homepage_uri: https://github.com/tetetratra/
|
|
42
|
-
source_code_uri: https://github.com/tetetratra/
|
|
43
|
+
homepage_uri: https://github.com/tetetratra/ensemble_cast
|
|
44
|
+
source_code_uri: https://github.com/tetetratra/ensemble_cast
|
|
43
45
|
post_install_message:
|
|
44
46
|
rdoc_options: []
|
|
45
47
|
require_paths:
|