procme 0.0.2 → 0.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 +8 -8
- data/README.md +2 -2
- data/lib/procme.rb +1 -1
- data/procme.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YjY3N2NhODllMzkyNDkyYTc5MzhjMWE3MWMzMWE4OWJhZDRlOGU3ZQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NjE0ZjIyNWQ3NTlhNTYyMWExZDI0NzQ0NDE3NjE0YmU5MjUxOTBmYw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZDIwMDU5YjU2MWJjMzE1OTBlZDY2ZjVjMDE2ODViN2YzOWE2ZWUxNTEyOTcz
|
10
|
+
NTk1ZjcxYTVmZTIxYzU5ZmE2MjAwNzMzMTAzYTcyNDQzNTc4YjA1N2I4YzAx
|
11
|
+
YTQ1ODY0Yzk0MjQzZjg4ZDFlMTk2NTg3NTE4MmFiMjI0YzI2ZDY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YzQxNjE0YmM5OWUxZjRjYTIzZTM3ZjQ2MGRmOTZlNGQwOGI5ZGFlODVlMTlk
|
14
|
+
ZDcyOWQxM2UzNjc2NGE3ZjEyMzVhOTgxYmMwZmMyNzUwNGM3OThiZjJhODQ1
|
15
|
+
ZWNjODMwM2E3NmFlZDYxNzk4ZGU1NjNiNDVmNjBkMWQyOTJjZmQ=
|
data/README.md
CHANGED
@@ -147,10 +147,10 @@ It's because you should check object itself, not its class, to match with
|
|
147
147
|
`===`. The solution is simple:
|
148
148
|
|
149
149
|
```ruby
|
150
|
-
['test', 'me'].select(&fltr(itself: String)) # => []
|
150
|
+
['test', 'me'].select(&fltr(itself: String)) # => ['test', 'me']
|
151
151
|
```
|
152
152
|
|
153
|
-
`#itself` method is available in Ruby >= 2.
|
153
|
+
`#itself` method is available in Ruby >= 2.2, and easily backported to
|
154
154
|
earlier versions.
|
155
155
|
|
156
156
|
## License
|
data/lib/procme.rb
CHANGED
data/procme.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: procme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Victor Shepelev
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-05-
|
11
|
+
date: 2015-05-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|