An open API service indexing awesome lists of open source software.

https://github.com/danielpclark/assign

Add Kernel#assign for multiple assignment with method calls. Feature Request #11690 in Ruby.
https://github.com/danielpclark/assign

Last synced: about 1 year ago
JSON representation

Add Kernel#assign for multiple assignment with method calls. Feature Request #11690 in Ruby.

Awesome Lists containing this project

README

          

# Assign

This will allow you to use any method inline with multiple assignment.
This is a feature request for the Ruby language [#11690](https://bugs.ruby-lang.org/issues/11690)

Credit to [Nobuyoshi Nakada](https://bugs.ruby-lang.org/issues/11690#note-4) for the initial implementation design.

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'assign'
```

And then execute:

$ bundle

Or install it yourself as:

$ gem install assign

## Usage

```ruby
hash = {}
a, b, hash.assign.update, c = [:a, 2, {hash: :example}, nil]
hash
# => {hash: :example}
```

## Development

After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/danielpclark/assign. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.

## License

The MIT License (MIT)

Copyright (c) 2015 Daniel P. Clark

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.