hash_pick 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 +6 -6
- data/README.rdoc +3 -3
- data/lib/hash_pick/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 71c464d01eac460c7648f25a75ed9934f0edf762
|
|
4
|
+
data.tar.gz: 2b1f5e47a4625660f7558960d01bcf80eaa183ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ebe4a4af2e2f4b918883ec0ecd779b55bbfcf723895da8ca19b29edd982257ce476ff9c457bc0db6d0f5c4d44d002294937515009e6aef7bf50ca7ca1d976d1a
|
|
7
|
+
data.tar.gz: 8e78365148d86b93a711b624fb40b56a4567c24a8708b5d531414076a3a81192c2d3175fc222f1588b2d2d819481b733d7449f1518b48526548870b4ad06252b
|
data/README.md
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
[](http://badge.fury.io/rb/hash_pick) [](https://travis-ci.org/hetznerZA/hash_pick) [](https://gemnasium.com/hetznerZA/hash_pick)
|
|
2
2
|
|
|
3
|
-
#
|
|
3
|
+
# HashPick
|
|
4
4
|
|
|
5
5
|
A module of utility methods for hash path queries.
|
|
6
6
|
|
|
7
7
|
## Documentation
|
|
8
8
|
|
|
9
|
-
For documentation of the released gem, see [rubydoc.info](http://www.rubydoc.info/gems/
|
|
9
|
+
For documentation of the released gem, see [rubydoc.info](http://www.rubydoc.info/gems/hash_pick).
|
|
10
10
|
|
|
11
11
|
## Installation
|
|
12
12
|
|
|
13
13
|
Add this line to your application's Gemfile:
|
|
14
14
|
|
|
15
15
|
```ruby
|
|
16
|
-
gem '
|
|
16
|
+
gem 'hash_pick'
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
And then execute:
|
|
@@ -22,7 +22,7 @@ And then execute:
|
|
|
22
22
|
|
|
23
23
|
Or install it yourself as:
|
|
24
24
|
|
|
25
|
-
$ gem install
|
|
25
|
+
$ gem install hash_pick
|
|
26
26
|
|
|
27
27
|
## Development
|
|
28
28
|
|
|
@@ -32,5 +32,5 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
32
32
|
|
|
33
33
|
## Contributing
|
|
34
34
|
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/hetznerZA/
|
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/hetznerZA/hash_pick.
|
|
36
36
|
|
data/README.rdoc
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
=
|
|
1
|
+
= HashPick
|
|
2
2
|
|
|
3
3
|
Provides utility methods for hash path queries.
|
|
4
4
|
|
|
@@ -9,6 +9,6 @@ Hash paths can be expressed as lists of keys of these types:
|
|
|
9
9
|
* Symbol.
|
|
10
10
|
* Eithe String or Symbol.
|
|
11
11
|
|
|
12
|
-
The methods are provided by the module {
|
|
12
|
+
The methods are provided by the module {HashPick}.
|
|
13
13
|
|
|
14
|
-
The implementation is covered by an rspec test suite in the {https://github.com/hetznerZA/
|
|
14
|
+
The implementation is covered by an rspec test suite in the {https://github.com/hetznerZA/hash_pick HashPick repo}.
|
data/lib/hash_pick/version.rb
CHANGED