https://github.com/yujideveloper/struct_cast
StructCast provides the refinement module that defines the method for casting to a Struct object
https://github.com/yujideveloper/struct_cast
refinement ruby struct
Last synced: 5 months ago
JSON representation
StructCast provides the refinement module that defines the method for casting to a Struct object
- Host: GitHub
- URL: https://github.com/yujideveloper/struct_cast
- Owner: yujideveloper
- License: mit
- Created: 2020-09-25T15:18:45.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-08T04:16:42.000Z (about 5 years ago)
- Last Synced: 2025-08-18T09:49:24.459Z (6 months ago)
- Topics: refinement, ruby, struct
- Language: Ruby
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# StructCast
[](https://badge.fury.io/rb/struct_cast)
[](https://github.com/yujideveloper/struct_cast/actions?query=workflow%3ABuild)
[](https://codeclimate.com/github/yujideveloper/struct_cast/maintainability)
StructCast provides the refinement module that defines the method for casting to a Struct object.
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'struct_cast'
```
And then execute:
$ bundle install
Or install it yourself as:
$ gem install struct_cast
## Usage
``` ruby
using StructCast
Struct({ id: 1, name: "foo" }) #=> #
```
## Development
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` 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/yujideveloper/struct_cast.
## License
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).