Sha256: e724d2440b3367ebe181b1ec36b5fd0d6c65d1ef7ec1dd89ffd53543a4624aa0

Contents?: true

Size: 895 Bytes

Versions: 1

Compression:

Stored size: 895 Bytes

Contents

# HashWithKeyAccessMethod

Hash key access method.

## Installation

Add this line to your application's Gemfile:

    gem 'hash_with_key_access_method'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install hash_with_key_access_method

## Usage

```ruby
hash = { name: :homu, "name2" => :mami}

hash.name # to hash[:name]
# => :homu

# Failed String key access
# hash.name2

# Assign new value
hash.name = :mami # to hash[:name] = :mami
hash.name
# => :mami

# Assign new key value
hash.age = 13 # to hash[:age] = 13
hash.age
# => 13
hash[:age]
# => 13
```

## Contributing

1. Fork it ( https://github.com/osyo-manga/gem-hash_with_key_access_method/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hash_with_key_access_method-0.0.1 README.md