rize 1.0.2 → 1.0.3
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/.rubocop.yml +1 -0
- data/README.md +2 -0
- data/lib/rize/version.rb +1 -1
- data/rize.gemspec +10 -1
- metadata +10 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f1347d5f6d7d4e5ed3f5206cf8b8e66b6b58a0ec
|
|
4
|
+
data.tar.gz: a2ad478a07f465f47fa393c3a5622b9d07e63c6f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 855e0370aabcaad8c14a2cb2c1f003b8b2ef7fb499ff84ec8c05f12f469971476367cb35d4070ad08fe5e2cabd3747fc52dec0222d6a00467f916b6233d9dd95
|
|
7
|
+
data.tar.gz: 2279df6488107aaa086cbacbd6decb1f0c4f001224abe76de308bd665d3ed0cc53f45f03a6463a57caa62ccd67e9f62f09bb6eefabc308c2e23793265a2e5bc1
|
data/.rubocop.yml
CHANGED
data/README.md
CHANGED
|
@@ -13,6 +13,8 @@ Rize is a collection of useful methods that can make it easier to work with func
|
|
|
13
13
|
- Map or iterate over multiple arrays at once
|
|
14
14
|
- Elegantly map over just the keys, or just the values of a hash.
|
|
15
15
|
|
|
16
|
+
Nothing is monkeypatched, so you don't have to worry about the core classes behaving differently than you expect.
|
|
17
|
+
|
|
16
18
|
See the [Usage](https://github.com/abhijeetkalyan/rize#usage) section for more on what rize can do.
|
|
17
19
|
|
|
18
20
|
## Installation
|
data/lib/rize/version.rb
CHANGED
data/rize.gemspec
CHANGED
|
@@ -10,7 +10,16 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["abhijeetkalyan@gmail.com"]
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{A functional toolkit for Ruby.}
|
|
13
|
-
spec.description =
|
|
13
|
+
spec.description = <<-EOF
|
|
14
|
+
Rize is a collection of useful methods that can make it easier to work with functions, arrays and hashes in Ruby. Some of the interesting things you can do include:
|
|
15
|
+
|
|
16
|
+
- Compose, memoize and partially supply arguments to your functions
|
|
17
|
+
- Control the behaviour of your functions based on how many times they're called - for example, you could create a function that stops executing on the third try.
|
|
18
|
+
- Map or iterate over multiple arrays at once
|
|
19
|
+
- Elegantly map over just the keys, or just the values of a hash.
|
|
20
|
+
|
|
21
|
+
Nothing is monkeypatched, so you don't have to worry about the core classes behaving differently than you expect.
|
|
22
|
+
EOF
|
|
14
23
|
spec.homepage = "https://github.com/abhijeetkalyan/rize"
|
|
15
24
|
spec.license = "MIT"
|
|
16
25
|
spec.required_ruby_version = '>= 2.0.0'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rize
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- abhijeetkalyan
|
|
@@ -80,8 +80,15 @@ dependencies:
|
|
|
80
80
|
- - "~>"
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: 0.10.3
|
|
83
|
-
description:
|
|
84
|
-
hashes.
|
|
83
|
+
description: |
|
|
84
|
+
Rize is a collection of useful methods that can make it easier to work with functions, arrays and hashes in Ruby. Some of the interesting things you can do include:
|
|
85
|
+
|
|
86
|
+
- Compose, memoize and partially supply arguments to your functions
|
|
87
|
+
- Control the behaviour of your functions based on how many times they're called - for example, you could create a function that stops executing on the third try.
|
|
88
|
+
- Map or iterate over multiple arrays at once
|
|
89
|
+
- Elegantly map over just the keys, or just the values of a hash.
|
|
90
|
+
|
|
91
|
+
Nothing is monkeypatched, so you don't have to worry about the core classes behaving differently than you expect.
|
|
85
92
|
email:
|
|
86
93
|
- abhijeetkalyan@gmail.com
|
|
87
94
|
executables: []
|