lite-ruby 1.0.21 → 1.0.22
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +12 -2
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +45 -43
- data/lib/lite/ruby/hash.rb +1 -1
- data/lib/lite/ruby/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5793ac2130287b2a84f505eed05fc25ef5f58780efd98d0290f50bebff290219
|
4
|
+
data.tar.gz: '051910e39e8295339e26675013a22a5cc9837ac13dc7dea1f85bf3c236211f78'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8511007a6745b21aa3ff49af439e223ea8e4c830c90f804be768d6dc59119a22fb0a91acd7def07cfb6dd703608452ab4d7d369fccd161fd1c272786a343a0f
|
7
|
+
data.tar.gz: aac608857cd852d41ee35d8d278bc55337818ef35a3f4212f9dc852aee4140d1bcdc5476207751fc0214216654cd7e497b2a58e15df28f8bfce248f64883eaf1
|
data/.rubocop.yml
CHANGED
@@ -12,14 +12,18 @@ Layout/EmptyLinesAroundClassBody:
|
|
12
12
|
EnforcedStyle: empty_lines_except_namespace
|
13
13
|
Layout/EmptyLinesAroundModuleBody:
|
14
14
|
EnforcedStyle: empty_lines_except_namespace
|
15
|
+
Layout/LineLength:
|
16
|
+
Max: 100
|
17
|
+
Lint/RaiseException:
|
18
|
+
Enabled: true
|
19
|
+
Lint/StructNewOverride:
|
20
|
+
Enabled: true
|
15
21
|
Metrics/BlockLength:
|
16
22
|
Exclude:
|
17
23
|
- 'spec/**/**/*'
|
18
24
|
- '*.gemspec'
|
19
25
|
Metrics/ClassLength:
|
20
26
|
Enabled: false
|
21
|
-
Metrics/LineLength:
|
22
|
-
Max: 100
|
23
27
|
Metrics/ModuleLength:
|
24
28
|
Enabled: false
|
25
29
|
RSpec/DescribeClass:
|
@@ -33,5 +37,11 @@ Style/Documentation:
|
|
33
37
|
Enabled: false
|
34
38
|
Style/ExpandPathArguments:
|
35
39
|
Enabled: false
|
40
|
+
Style/HashEachMethods:
|
41
|
+
Enabled: true
|
42
|
+
Style/HashTransformKeys:
|
43
|
+
Enabled: false
|
44
|
+
Style/HashTransformValues:
|
45
|
+
Enabled: false
|
36
46
|
Style/PerlBackrefs:
|
37
47
|
Enabled: false
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [1.0.22] - 2020-04-11
|
10
|
+
### Fixed
|
11
|
+
- Fixed reverse_merge! on a frozen hash
|
12
|
+
|
9
13
|
## [1.0.21] - 2019-11-02
|
10
14
|
### Added
|
11
15
|
- Added Enumerable => `excluding`
|
data/Gemfile.lock
CHANGED
@@ -1,58 +1,58 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
lite-ruby (1.0.
|
4
|
+
lite-ruby (1.0.22)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
-
actionpack (6.0.
|
10
|
-
actionview (= 6.0.
|
11
|
-
activesupport (= 6.0.
|
12
|
-
rack (~> 2.0)
|
9
|
+
actionpack (6.0.2.2)
|
10
|
+
actionview (= 6.0.2.2)
|
11
|
+
activesupport (= 6.0.2.2)
|
12
|
+
rack (~> 2.0, >= 2.0.8)
|
13
13
|
rack-test (>= 0.6.3)
|
14
14
|
rails-dom-testing (~> 2.0)
|
15
15
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
16
|
-
actionview (6.0.
|
17
|
-
activesupport (= 6.0.
|
16
|
+
actionview (6.0.2.2)
|
17
|
+
activesupport (= 6.0.2.2)
|
18
18
|
builder (~> 3.1)
|
19
19
|
erubi (~> 1.4)
|
20
20
|
rails-dom-testing (~> 2.0)
|
21
21
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
22
|
-
activesupport (6.0.
|
22
|
+
activesupport (6.0.2.2)
|
23
23
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
24
24
|
i18n (>= 0.7, < 2)
|
25
25
|
minitest (~> 5.1)
|
26
26
|
tzinfo (~> 1.1)
|
27
|
-
zeitwerk (~> 2.
|
27
|
+
zeitwerk (~> 2.2)
|
28
28
|
ast (2.4.0)
|
29
|
-
builder (3.2.
|
29
|
+
builder (3.2.4)
|
30
30
|
colorize (0.8.1)
|
31
|
-
concurrent-ruby (1.1.
|
32
|
-
crass (1.0.
|
31
|
+
concurrent-ruby (1.1.6)
|
32
|
+
crass (1.0.6)
|
33
33
|
diff-lcs (1.3)
|
34
34
|
erubi (1.9.0)
|
35
|
-
fasterer (0.
|
35
|
+
fasterer (0.8.3)
|
36
36
|
colorize (~> 0.7)
|
37
|
-
ruby_parser (>= 3.
|
37
|
+
ruby_parser (>= 3.14.1)
|
38
38
|
generator_spec (0.9.4)
|
39
39
|
activesupport (>= 3.0.0)
|
40
40
|
railties (>= 3.0.0)
|
41
|
-
i18n (1.
|
41
|
+
i18n (1.8.2)
|
42
42
|
concurrent-ruby (~> 1.0)
|
43
43
|
jaro_winkler (1.5.4)
|
44
|
-
loofah (2.
|
44
|
+
loofah (2.5.0)
|
45
45
|
crass (~> 1.0.2)
|
46
46
|
nokogiri (>= 1.5.9)
|
47
|
-
method_source (0.
|
47
|
+
method_source (1.0.0)
|
48
48
|
mini_portile2 (2.4.0)
|
49
|
-
minitest (5.
|
50
|
-
nokogiri (1.10.
|
49
|
+
minitest (5.14.0)
|
50
|
+
nokogiri (1.10.9)
|
51
51
|
mini_portile2 (~> 2.4.0)
|
52
|
-
parallel (1.
|
53
|
-
parser (2.
|
52
|
+
parallel (1.19.1)
|
53
|
+
parser (2.7.1.0)
|
54
54
|
ast (~> 2.4.0)
|
55
|
-
rack (2.
|
55
|
+
rack (2.2.2)
|
56
56
|
rack-test (1.1.0)
|
57
57
|
rack (>= 1.0, < 3)
|
58
58
|
rails-dom-testing (2.0.3)
|
@@ -60,48 +60,50 @@ GEM
|
|
60
60
|
nokogiri (>= 1.6)
|
61
61
|
rails-html-sanitizer (1.3.0)
|
62
62
|
loofah (~> 2.3)
|
63
|
-
railties (6.0.
|
64
|
-
actionpack (= 6.0.
|
65
|
-
activesupport (= 6.0.
|
63
|
+
railties (6.0.2.2)
|
64
|
+
actionpack (= 6.0.2.2)
|
65
|
+
activesupport (= 6.0.2.2)
|
66
66
|
method_source
|
67
67
|
rake (>= 0.8.7)
|
68
68
|
thor (>= 0.20.3, < 2.0)
|
69
69
|
rainbow (3.0.0)
|
70
|
-
rake (13.0.
|
70
|
+
rake (13.0.1)
|
71
|
+
rexml (3.2.4)
|
71
72
|
rspec (3.9.0)
|
72
73
|
rspec-core (~> 3.9.0)
|
73
74
|
rspec-expectations (~> 3.9.0)
|
74
75
|
rspec-mocks (~> 3.9.0)
|
75
|
-
rspec-core (3.9.
|
76
|
-
rspec-support (~> 3.9.
|
77
|
-
rspec-expectations (3.9.
|
76
|
+
rspec-core (3.9.1)
|
77
|
+
rspec-support (~> 3.9.1)
|
78
|
+
rspec-expectations (3.9.1)
|
78
79
|
diff-lcs (>= 1.2.0, < 2.0)
|
79
80
|
rspec-support (~> 3.9.0)
|
80
|
-
rspec-mocks (3.9.
|
81
|
+
rspec-mocks (3.9.1)
|
81
82
|
diff-lcs (>= 1.2.0, < 2.0)
|
82
83
|
rspec-support (~> 3.9.0)
|
83
|
-
rspec-support (3.9.
|
84
|
-
rubocop (0.
|
84
|
+
rspec-support (3.9.2)
|
85
|
+
rubocop (0.81.0)
|
85
86
|
jaro_winkler (~> 1.5.1)
|
86
87
|
parallel (~> 1.10)
|
87
|
-
parser (>= 2.
|
88
|
+
parser (>= 2.7.0.1)
|
88
89
|
rainbow (>= 2.2.2, < 4.0)
|
90
|
+
rexml
|
89
91
|
ruby-progressbar (~> 1.7)
|
90
|
-
unicode-display_width (>= 1.4.0, <
|
91
|
-
rubocop-performance (1.5.
|
92
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
93
|
+
rubocop-performance (1.5.2)
|
92
94
|
rubocop (>= 0.71.0)
|
93
|
-
rubocop-rspec (1.
|
95
|
+
rubocop-rspec (1.38.1)
|
94
96
|
rubocop (>= 0.68.1)
|
95
97
|
ruby-progressbar (1.10.1)
|
96
|
-
ruby_parser (3.14.
|
98
|
+
ruby_parser (3.14.2)
|
97
99
|
sexp_processor (~> 4.9)
|
98
|
-
sexp_processor (4.
|
99
|
-
thor (0.
|
100
|
+
sexp_processor (4.14.1)
|
101
|
+
thor (1.0.1)
|
100
102
|
thread_safe (0.3.6)
|
101
|
-
tzinfo (1.2.
|
103
|
+
tzinfo (1.2.7)
|
102
104
|
thread_safe (~> 0.1)
|
103
|
-
unicode-display_width (1.
|
104
|
-
zeitwerk (2.
|
105
|
+
unicode-display_width (1.7.0)
|
106
|
+
zeitwerk (2.3.0)
|
105
107
|
|
106
108
|
PLATFORMS
|
107
109
|
ruby
|
@@ -118,4 +120,4 @@ DEPENDENCIES
|
|
118
120
|
rubocop-rspec
|
119
121
|
|
120
122
|
BUNDLED WITH
|
121
|
-
2.
|
123
|
+
2.1.4
|
data/lib/lite/ruby/hash.rb
CHANGED
data/lib/lite/ruby/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lite-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.22
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan Gomez
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-04-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -202,7 +202,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
202
202
|
- !ruby/object:Gem::Version
|
203
203
|
version: '0'
|
204
204
|
requirements: []
|
205
|
-
rubygems_version: 3.
|
205
|
+
rubygems_version: 3.1.2
|
206
206
|
signing_key:
|
207
207
|
specification_version: 4
|
208
208
|
summary: Collection of useful Ruby methods for its primitive classes
|