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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c27c5ac357305865c80aac958802c39d32a03751
4
- data.tar.gz: 3c8b88ff0f75389a8614fda79b7d1eb5131fcef9
3
+ metadata.gz: f1347d5f6d7d4e5ed3f5206cf8b8e66b6b58a0ec
4
+ data.tar.gz: a2ad478a07f465f47fa393c3a5622b9d07e63c6f
5
5
  SHA512:
6
- metadata.gz: a3504447737b04893fadd1bcebdffc04c4b9f61f99fca9712231980bd9ee5f66963c45aa4d047ad99ccb673f05153d0e73da32dd707ac632795d2a173f2244cc
7
- data.tar.gz: 3f148b9bceff97124d84c37b93d08bef6f978cd4204f51edb437f887e86668351e18f3bb961792d8b4961a4a883c1728359179aa9151f9992df6565bd47af618
6
+ metadata.gz: 855e0370aabcaad8c14a2cb2c1f003b8b2ef7fb499ff84ec8c05f12f469971476367cb35d4070ad08fe5e2cabd3747fc52dec0222d6a00467f916b6233d9dd95
7
+ data.tar.gz: 2279df6488107aaa086cbacbd6decb1f0c4f001224abe76de308bd665d3ed0cc53f45f03a6463a57caa62ccd67e9f62f09bb6eefabc308c2e23793265a2e5bc1
@@ -2,6 +2,7 @@ AllCops:
2
2
  TargetRubyVersion: 2.2
3
3
  Exclude:
4
4
  - 'lib/rize/version.rb'
5
+ - 'rize.gemspec'
5
6
 
6
7
  Style/SpaceInsideHashLiteralBraces:
7
8
  Enabled: false
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
@@ -1,3 +1,3 @@
1
1
  module Rize
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
@@ -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 = %q{A collection of useful utilities for manipulating functions, arrays and hashes.}
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.2
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: A collection of useful utilities for manipulating functions, arrays and
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: []