openhash 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -0
- data/README.md +1 -1
- data/lib/open_hash.rb +1 -1
- data/openhash.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb0e8dde7fbde864df5d33d5eb26d5c8eafa45bf4ea50b39f11ea0ba854b078d
|
4
|
+
data.tar.gz: f752095c7fa92e7a872861d1b92fa7bc0c82aca355e9b9a480bf8983aea19b23
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8fe93478af319a9786a4c520235273617dafae38deaf60f4e1e0b3b9d8e33a6325d68d280a5170ae98cf3c44707e61c38c058a0de37de900619fd9254d982d2
|
7
|
+
data.tar.gz: 170416c676fbe344700456b59d60b011ce65d5f651767ffbc740b968dfba7d18c888bd5bbba7f9417e2ba8466bf064a9cc8db809086fce6e2ee99b7bcd52eccd
|
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -13,7 +13,7 @@
|
|
13
13
|
```ruby
|
14
14
|
# person = OpenHash.new(name: "John Smith", hometown: { city: "London" })
|
15
15
|
# person.name #=> "John Smith"
|
16
|
-
# person.hometown.
|
16
|
+
# person.hometown.city #=> "London"
|
17
17
|
#
|
18
18
|
# person = OpenHash.new
|
19
19
|
# person.name = "Piter Lee"
|
data/lib/open_hash.rb
CHANGED
@@ -7,7 +7,7 @@ require 'ostruct'
|
|
7
7
|
#
|
8
8
|
# person = OpenHash.new(name: "John Smith", hometown: { city: "London" })
|
9
9
|
# person.name #=> "John Smith"
|
10
|
-
# person.hometown.
|
10
|
+
# person.hometown.city #=> "London"
|
11
11
|
#
|
12
12
|
# person = OpenHash.new
|
13
13
|
# person.name = "Piter Lee"
|
data/openhash.gemspec
CHANGED