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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ce62159b96a8bf1a4e9858346d62db25bfa36735d07338b31e6f7033397386dd
4
- data.tar.gz: '0748023153497b09f2923a17e48b4d1ed7697d14655119ac45ef89eeeeb0524d'
3
+ metadata.gz: cb0e8dde7fbde864df5d33d5eb26d5c8eafa45bf4ea50b39f11ea0ba854b078d
4
+ data.tar.gz: f752095c7fa92e7a872861d1b92fa7bc0c82aca355e9b9a480bf8983aea19b23
5
5
  SHA512:
6
- metadata.gz: 3c0751f116ec4d76be10389e35e251fc5a2824f90aa055b97c0b0606900af31d43c4b7e999b26b348dc4bb9b7b03e985c22583ea04f8e286aeb0160c57612405
7
- data.tar.gz: e4c3f5fc2b3380b6a33214bfa4a303221dcfff606489e1258442eea9eb34479eef2829a0c202cb0d6a57d0240307982b456392d9a830be276a900c4b50b26972
6
+ metadata.gz: e8fe93478af319a9786a4c520235273617dafae38deaf60f4e1e0b3b9d8e33a6325d68d280a5170ae98cf3c44707e61c38c058a0de37de900619fd9254d982d2
7
+ data.tar.gz: 170416c676fbe344700456b59d60b011ce65d5f651767ffbc740b968dfba7d18c888bd5bbba7f9417e2ba8466bf064a9cc8db809086fce6e2ee99b7bcd52eccd
data/.gitignore CHANGED
@@ -9,3 +9,6 @@
9
9
 
10
10
  # rspec failure tracking
11
11
  .rspec_status
12
+
13
+ # gem files
14
+ *.gem
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.country #=> "UK"
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.country #=> "UK"
10
+ # person.hometown.city #=> "London"
11
11
  #
12
12
  # person = OpenHash.new
13
13
  # person.name = "Piter Lee"
data/openhash.gemspec CHANGED
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "openhash"
8
- spec.version = '0.0.1'
8
+ spec.version = '0.0.2'
9
9
  spec.authors = ["cenxky"]
10
10
  spec.email = ["cenxky@gmail.com"]
11
11
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openhash
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - cenxky